Skip to content

Commit 24975b4

Browse files
Move back the debug line
1 parent 18b25ad commit 24975b4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ext-test/java/org/opentripplanner/ext/geocoder/EnglishNgramAnalyzerTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import java.io.IOException;
66
import java.util.ArrayList;
77
import java.util.List;
8-
import java.util.stream.Collectors;
98
import org.apache.lucene.analysis.Analyzer;
109
import org.apache.lucene.analysis.TokenStream;
1110
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
@@ -18,6 +17,7 @@ void ngram() throws IOException {
1817
var analyzer = new EnglishNGramAnalyzer();
1918
List<String> result = analyze("Alexanderplatz", analyzer);
2019

20+
//System.out.println(result.stream().collect(Collectors.joining("\",\"", "\"", "\"")));
2121
assertEquals(
2222
List.of(
2323
"Ale",
@@ -99,7 +99,6 @@ void ampersand() throws IOException {
9999
var analyzer = new EnglishNGramAnalyzer();
100100
List<String> result = analyze("Meridian Ave N & N 148th St", analyzer);
101101

102-
System.out.println(result.stream().collect(Collectors.joining("\",\"", "\"", "\"")));
103102
assertEquals(
104103
List.of(
105104
"Mer",

0 commit comments

Comments
 (0)