diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-20 13:48:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-07 13:20:00 +0200 |
commit | 610f3388c781055fcfc3f1ea8a027b1b9cbc5bae (patch) | |
tree | 563e9c044e7261c6e9d60adedb2b2481227379f7 /qadevOOo/runner/util | |
parent | 831051f55e22e909cc140e3ec4d1aae282a92fcd (diff) |
java: no need to check for null before calling instanceof
the instanceof check returns false when passed a null value
Change-Id: I7742d0d9cf25ef23d9adee7328f701c7efeea8b5
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r-- | qadevOOo/runner/util/SysUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/util/SysUtils.java b/qadevOOo/runner/util/SysUtils.java index fbcd0cc6f3e8..cf4b3b56cf4b 100644 --- a/qadevOOo/runner/util/SysUtils.java +++ b/qadevOOo/runner/util/SysUtils.java @@ -61,7 +61,7 @@ public class SysUtils { for (int i = 0; i < dfs.length; i++) { if (dfs[i].MimeType.startsWith("text/plain")) { Object data = xTrans.getTransferData(dfs[i]); - if (data != null && data instanceof String) { + if (data instanceof String) { return (String) data; } } |