Replace junk characters with ">"

This commit is contained in:
Himanshu Pandey
2019-02-20 15:51:24 -08:00
committed by GitHub
parent 22edffbb21
commit a597a7f456

View File

@ -129,7 +129,7 @@ $ cat ~/tmp/Foo.java
public class Foo {
void bar() {
int x = 42;
if (x > 5) { // NOPMD
if (x > 5) { // NOPMD
}
}
}