remove a private method that's never used

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150418 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-08-11 07:19:18 +00:00
parent f3edf7417a
commit a715799797
1 changed files with 0 additions and 9 deletions

View File

@ -91,13 +91,4 @@ public class TestRussianStem extends TestCase
}
}
private String printChars(String output)
{
StringBuffer s = new StringBuffer();
for (int i = 0; i < output.length(); i++)
{
s.append(output.charAt(i));
}
return s.toString();
}
}