1 23 24 package org.hammurapi.inspectors; 25 26 import org.hammurapi.InspectorBase; 27 28 import com.pavelvlasov.jsel.statements.ForStatement; 29 import com.pavelvlasov.review.SourceMarker; 30 31 37 public class ForIteratorRule extends InspectorBase { 38 39 44 public void visit(ForStatement statement) { 45 if (statement.getIterator()==null) { 46 context.reportViolation((SourceMarker) statement); 47 } 48 } 49 50 } 51 | Popular Tags |