correctly decompile interface object fields

This commit is contained in:
Alexandru-Constantin Bledea
2016-03-07 18:52:37 +02:00
parent d50e8a860e
commit 06c993b508
5 changed files with 27 additions and 4 deletions

Binary file not shown.

View File

@@ -0,0 +1,8 @@
package pkg;
import java.math.BigDecimal;
public interface TestInterfaceWithObject {
BigDecimal BUGS_IN_THE_DECOMPILER = BigDecimal.ZERO;
}

View File

@@ -0,0 +1,13 @@
package pkg;
import java.math.BigDecimal;
/**
* @author Alexandru-Constantin Bledea
* @since March 06, 2016
*/
public interface TestInterfaceWithObject {
BigDecimal BUGS_IN_THE_DECOMPILER = BigDecimal.ZERO;
}