summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/analysis/SourceIndex.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cuchaz/enigma/analysis/SourceIndex.java')
-rw-r--r--src/cuchaz/enigma/analysis/SourceIndex.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cuchaz/enigma/analysis/SourceIndex.java b/src/cuchaz/enigma/analysis/SourceIndex.java
index faae1a1..21a499e 100644
--- a/src/cuchaz/enigma/analysis/SourceIndex.java
+++ b/src/cuchaz/enigma/analysis/SourceIndex.java
@@ -89,14 +89,12 @@ public class SourceIndex
89 // DEBUG 89 // DEBUG
90 //System.out.println( String.format( "%s \"%s\" region: %s", node.getNodeType(), name, region ) ); 90 //System.out.println( String.format( "%s \"%s\" region: %s", node.getNodeType(), name, region ) );
91 91
92 /* TODO: double check that we still need this
93 // for tokens representing inner classes, make sure we only get the simple name 92 // for tokens representing inner classes, make sure we only get the simple name
94 int pos = node.getText().lastIndexOf( '$' ); 93 int pos = node.getText().lastIndexOf( '$' );
95 if( pos >= 0 ) 94 if( pos >= 0 )
96 { 95 {
97 token.end -= pos + 1; 96 token.end -= pos + 1;
98 } 97 }
99 */
100 98
101 return token; 99 return token;
102 } 100 }