diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2015-11-29 15:26:53 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2015-11-29 15:26:53 +0000 |
commit | b9c792dad07cab34bc1ecf9f13e8085292ad5e86 (patch) | |
tree | 81165c7122172964790d7de38703c5a593c0e0a4 /src/resources/devtools | |
parent | f9640207460b701e8a790f99c4a02cf233e101b1 (diff) | |
download | poi-b9c792dad07cab34bc1ecf9f13e8085292ad5e86.tar.gz poi-b9c792dad07cab34bc1ecf9f13e8085292ad5e86.zip |
close resources
fix a few eclipse warnings
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717077 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/resources/devtools')
-rw-r--r-- | src/resources/devtools/forbidden-signatures.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/devtools/forbidden-signatures.txt b/src/resources/devtools/forbidden-signatures.txt index 75953ccc7e..1a506f3ffd 100644 --- a/src/resources/devtools/forbidden-signatures.txt +++ b/src/resources/devtools/forbidden-signatures.txt @@ -29,3 +29,6 @@ java.util.Date#toString() @ Do not use methods that depend on the current Local, # Disallow reflection on private object fields/methods
java.lang.reflect.AccessibleObject#setAccessible(java.lang.reflect.AccessibleObject[], boolean) @ Reflection usage fails with SecurityManagers and likely will not work any more in Java 9
java.lang.reflect.AccessibleObject#setAccessible(boolean) @ Reflection usage fails with SecurityManagers and likely will not work any more in Java 9
+
+java.text.DecimalFormatSymbols#DecimalFormatSymbols() @ use DecimalFormatSymbols.getInstance()
+java.text.DecimalFormatSymbols#DecimalFormatSymbols(Locale) @ use DecimalFormatSymbols.getInstance()
|