Update AutoFormat.java

fix #279
This commit is contained in:
TN8001
2022-03-05 08:37:37 +09:00
committed by GitHub
parent 17ab319f71
commit 0237dc37ac

View File

@@ -732,7 +732,7 @@ public class AutoFormat implements Formatter {
case ':':
// Java 8 :: operator.
if (peek() == ':') {
result.append(c).append(nextChar());
buf.append(c).append(nextChar());
break;
}