[java-decompiler] cleanup (text rearranging mode dropped)

This commit is contained in:
Roman Shevchenko
2015-11-09 20:46:35 +01:00
parent 810818e2c3
commit 26ab681d56
8 changed files with 5 additions and 137 deletions

View File

@@ -1,22 +0,0 @@
/*
* Weird comment here.
*/
package pkg;
class TestLineNumbersMatch {
void m1(boolean b) {
if (b)
System.out.println("a");
else
System.out.println("b");
}
void m2() {
new Runnable() {
@Override
public void run() {
System.out.println("run with me");
}
}.run();
}
}