Skip to content

Commit

Permalink
[Truffle] Dead code.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Jan 3, 2017
1 parent acb3b9c commit 054086b
Showing 1 changed file with 0 additions and 10 deletions.
Expand Up @@ -17,16 +17,6 @@ public class SourceIndexLength {
private final int charIndex;
private final int length;

public SourceIndexLength(SourceSection sourceSection) {
if (sourceSection == null) {
charIndex = -1;
length = 0;
} else {
charIndex = sourceSection.getCharIndex();
length = sourceSection.getCharLength();
}
}

public SourceIndexLength(int charIndex, int length) {
this.charIndex = charIndex;
this.length = length;
Expand Down

0 comments on commit 054086b

Please sign in to comment.