Skip to content

Commit ea48398

Browse files
committed
Fixed line processing code
1 parent 56ffc70 commit ea48398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/android/tests/Cn1ssChunkTools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ private static void runCheck(String[] args) throws IOException {
4141
String[] lines = text.split("\r?\n");
4242
for(String line : lines) {
4343
Matcher matcher = CHUNK_PATTERN.matcher(line);
44-
if(line.startsWith("CN1SS:") && !matcher.find()) {
44+
if(line.contains("CN1SS:") && !matcher.find()) {
4545
error = error || line.indexOf(":ERR:") > -1;
4646
System.out.println(line);
4747
}

0 commit comments

Comments
 (0)