diff options
author | Dominik Stadler <centic@apache.org> | 2016-05-24 14:17:52 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2016-05-24 14:17:52 +0000 |
commit | 79dafee3f3a58426866c741b36a58becc688b051 (patch) | |
tree | 4277f04787224922261560028db3116d4cd4c2c5 /src/resources/devtools/forbidden-signatures.txt | |
parent | b02a4899f3d82ae0a4df577efa65c1af5556f9b9 (diff) | |
download | poi-79dafee3f3a58426866c741b36a58becc688b051.tar.gz poi-79dafee3f3a58426866c741b36a58becc688b051.zip |
Upgrade to FindBugs 3.0.1 and add some findbugs-excludes
Update to forbiddenapi-checker 2.1, use the newly provided rule-sets and remove things that were applied upstream
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1745366 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/resources/devtools/forbidden-signatures.txt')
-rw-r--r-- | src/resources/devtools/forbidden-signatures.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/resources/devtools/forbidden-signatures.txt b/src/resources/devtools/forbidden-signatures.txt index dabcb7691c..54b2856786 100644 --- a/src/resources/devtools/forbidden-signatures.txt +++ b/src/resources/devtools/forbidden-signatures.txt @@ -26,10 +26,6 @@ java.util.Locale#setDefault(java.util.Locale) @ Do not use methods that depend o java.util.TimeZone#getDefault() @ Do not use methods that depend on the current Local, either use Locale.ROOT or let the user define the local, see class LocaleUtil for details
java.util.Date#toString() @ Do not use methods that depend on the current Local, either use Locale.ROOT or let the user define the local, see class LocaleUtil for details
-# 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#<init>() @ use DecimalFormatSymbols.getInstance()
java.text.DecimalFormatSymbols#<init>(java.util.Locale) @ use DecimalFormatSymbols.getInstance()
|