Skip to content

Commit

Permalink
fix compiler warnings in ShiroDialect
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Jun 12, 2017
1 parent c1392b2 commit c58d4ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public Set<IProcessor> getProcessors(String dialectPrefix) {
}

private static Set<IProcessor> createStandardProcessorsSet(String dialectPrefix) {
LinkedHashSet processors = new LinkedHashSet();
LinkedHashSet<IProcessor> processors = new LinkedHashSet<IProcessor>();

processors.add(new PrincipalAttrProcessor(dialectPrefix));
processors.add(new PrincipalElementProcessor(dialectPrefix));
Expand Down

0 comments on commit c58d4ea

Please sign in to comment.