Skip to content

Commit

Permalink
Fixed filter on log exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
OreCruncher committed Jun 7, 2015
1 parent 0bde483 commit a2591f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static boolean matchClassName(final Object obj, final String name) {
}

private static boolean isClassIgnored(final Object obj) {
return classIgnoreList.contains(obj);
return classIgnoreList.contains(obj.getClass().getName());
}

private static void scrubProjection(final ItemStack inputStack,
Expand Down

0 comments on commit a2591f0

Please sign in to comment.