Skip to content

Commit

Permalink
remove dead store
Browse files Browse the repository at this point in the history
  • Loading branch information
mebigfatguy committed Jan 28, 2011
1 parent 1dd7c25 commit 8fd0a9a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/com/mebigfatguy/deadmethods/PathIterator.java
Expand Up @@ -248,8 +248,7 @@ private String getNextFile() {
String className = file.getAbsolutePath();
className = className.substring(root.length() + 1);
className = className.substring(0, className.length() - ".class".length());
className = className.replaceAll("\\\\", "/");
return className;
return className.replaceAll("\\\\", "/");
}
} else {
File[] files = file.listFiles(new FileFilter() {
Expand Down

0 comments on commit 8fd0a9a

Please sign in to comment.