diff options
author | Dominik Stadler <centic@apache.org> | 2017-09-17 11:08:23 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2017-09-17 11:08:23 +0000 |
commit | 467053d91cf5ec1d48cfa979f82032ca7267f441 (patch) | |
tree | 9a3e8f3de0249ac1a8b5eec1defae2f8947fa880 /src/integrationtest | |
parent | ec42ec1053cdd849923bcbc0ad99ec0613a34af5 (diff) | |
download | poi-467053d91cf5ec1d48cfa979f82032ca7267f441.tar.gz poi-467053d91cf5ec1d48cfa979f82032ca7267f441.zip |
Various code cleanups, "final" for static methods is useless, for-loops, simplify boolean conditions, try-with-resource, javadoc, ...
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808620 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest')
-rw-r--r-- | src/integrationtest/org/apache/poi/stress/HPSFFileHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integrationtest/org/apache/poi/stress/HPSFFileHandler.java b/src/integrationtest/org/apache/poi/stress/HPSFFileHandler.java index 2bad961bdb..e348d964e0 100644 --- a/src/integrationtest/org/apache/poi/stress/HPSFFileHandler.java +++ b/src/integrationtest/org/apache/poi/stress/HPSFFileHandler.java @@ -62,7 +62,7 @@ public class HPSFFileHandler extends POIFSFileHandler { ); - private static final Set<String> unmodifiableHashSet(String... a) { + private static Set<String> unmodifiableHashSet(String... a) { return Collections.unmodifiableSet(new HashSet<>(Arrays.asList(a))); } |