Converter from Java: do not produce class object for just private methods + fixed bug with unnecessary static member qualification

This commit is contained in:
Valentin Kipyatkov
2014-06-11 16:17:05 +04:00
parent b00316f93a
commit ab714f168c
15 changed files with 228 additions and 5 deletions
@@ -0,0 +1,10 @@
//file
class Outer {
public static Object o = new Object();
public static class Nested {
public void foo() {
o = null;
}
}
}