Skip to content
Snippets Groups Projects
Commit 1ac9c3fc authored by felmer's avatar felmer
Browse files

clean up warnings

SVN: 12950
parent df7b2943
No related branches found
No related tags found
No related merge requests found
......@@ -152,9 +152,6 @@ public class OccurrencesMarker
private final int startIndex;
// helper flag for additional processing
private boolean visited;
public Occurrence(String word, int startIndex)
{
this.word = word;
......@@ -176,16 +173,6 @@ public class OccurrencesMarker
return startIndex + word.length() - 1;
}
public boolean isVisited()
{
return visited;
}
public void setVisited(boolean visited)
{
this.visited = visited;
}
public int compareTo(Occurrence o)
{
return getStartIndex() - o.getStartIndex();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment