Checkstyle config: Enable "redundant modifier" and "redundant import"
No warnings are currently raised by "redundant import", but enable it
anyway to catch anything in future.
Change-Id: I6565ad92b56fe8b3fc54e5b774f0fac586948fa5
diff --git a/tools/checkstyle.xml b/tools/checkstyle.xml
index 1bb40f7..0e7fd47 100644
--- a/tools/checkstyle.xml
+++ b/tools/checkstyle.xml
@@ -93,6 +93,8 @@
<property name="tokens" value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR "/>
<metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" value="inherit"/>
</module>
+ <module name="RedundantImport"/>
+ <module name="RedundantModifier"/>
</module>
<module name="FileTabCharacter">
<property name="severity" value="ignore"/>