1 package org.netbeans.test.cleanup; 2 3 import java.util.Collections ; 4 import java.util.List ; 5 import org.netbeans.test.cleanup.RemoveRedundantCasts; 6 7 10 public class RemoveSamePackageImports { 11 12 public RemoveSamePackageImports() { 13 } 14 15 public List doStuff() { 16 RemoveRedundantCasts rrc = null; 17 return Collections.singletonList(rrc); 18 } 19 20 } 21 | Popular Tags |