Repository: accumulo Updated Branches: refs/heads/ACCUMULO-4463 e6d019e3a -> 6b48d8be4
ACCUMULO-4463: fix findbugs excludes file due to file moves Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6b48d8be Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6b48d8be Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6b48d8be Branch: refs/heads/ACCUMULO-4463 Commit: 6b48d8be4da7075557c1e58f9607f477c0d9f13e Parents: e6d019e Author: Dave Marion <dlmar...@apache.org> Authored: Mon May 22 10:16:55 2017 -0400 Committer: Dave Marion <dlmar...@apache.org> Committed: Mon May 22 10:16:55 2017 -0400 ---------------------------------------------------------------------- core/src/main/findbugs/exclude-filter.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/6b48d8be/core/src/main/findbugs/exclude-filter.xml ---------------------------------------------------------------------- diff --git a/core/src/main/findbugs/exclude-filter.xml b/core/src/main/findbugs/exclude-filter.xml index 95aca41..56d3659 100644 --- a/core/src/main/findbugs/exclude-filter.xml +++ b/core/src/main/findbugs/exclude-filter.xml @@ -67,12 +67,12 @@ </Match> <Match> <!-- bad practice to start a thread in constructor; we should be careful using this class --> - <Class name="org.apache.accumulo.core.file.blockfile.cache.LruBlockCache" /> + <Class name="org.apache.accumulo.core.file.blockfile.cache.lru.LruBlockCache" /> <Bug code="SC" pattern="SC_START_IN_CTOR" /> </Match> <Match> <!-- locking is confusing, but probably correct --> - <Class name="org.apache.accumulo.core.file.blockfile.cache.LruBlockCache$EvictionThread" /> + <Class name="org.apache.accumulo.core.file.blockfile.cache.lru.LruBlockCache$EvictionThread" /> <Or> <Bug code="NN" pattern="NN_NAKED_NOTIFY" /> <Bug code="UW" pattern="UW_UNCOND_WAIT" />