summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/share
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-21 08:27:25 +0200
committerNoel Grandin <noel@peralex.com>2014-10-07 13:20:03 +0200
commit68fa1410975ccecc35db8a97669f0fbe5ef9b451 (patch)
tree5fd946ab04ea37e17813ec3c0345badc59ae5400 /qadevOOo/runner/share
parent81968336ea6433293c603110a75bd13d5898c0eb (diff)
java: use isEmpty() instead of "size() == 0"
Change-Id: I23e1038246999b0744d8e9ae83b66fa1f7dafa99
Diffstat (limited to 'qadevOOo/runner/share')
-rw-r--r--qadevOOo/runner/share/DescGetter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/share/DescGetter.java b/qadevOOo/runner/share/DescGetter.java
index e9bd0d5efa32..ad0ce136786e 100644
--- a/qadevOOo/runner/share/DescGetter.java
+++ b/qadevOOo/runner/share/DescGetter.java
@@ -153,7 +153,7 @@ public abstract class DescGetter
}
}
- if (entryList.size() == 0)
+ if (entryList.isEmpty())
{
return null;
}