diff options
| author | 2015-02-08 23:10:26 -0500 | |
|---|---|---|
| committer | 2015-02-08 23:10:26 -0500 | |
| commit | 31a1a418b04cd3e7b06cb50cb8674a2c25079f6c (patch) | |
| tree | 5914fd0c3557250dc61382a571ea3a3cdb9d941d /test/cuchaz/enigma/TestJarIndexInheritanceTree.java | |
| parent | Merge with 09538fb039f2e4e5e240cfb331be512ae8740fda (diff) | |
| download | enigma-fork-31a1a418b04cd3e7b06cb50cb8674a2c25079f6c.tar.gz enigma-fork-31a1a418b04cd3e7b06cb50cb8674a2c25079f6c.tar.xz enigma-fork-31a1a418b04cd3e7b06cb50cb8674a2c25079f6c.zip | |
added types to fields
Diffstat (limited to 'test/cuchaz/enigma/TestJarIndexInheritanceTree.java')
| -rw-r--r-- | test/cuchaz/enigma/TestJarIndexInheritanceTree.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cuchaz/enigma/TestJarIndexInheritanceTree.java b/test/cuchaz/enigma/TestJarIndexInheritanceTree.java index 1d6e5a5..349d33b 100644 --- a/test/cuchaz/enigma/TestJarIndexInheritanceTree.java +++ b/test/cuchaz/enigma/TestJarIndexInheritanceTree.java | |||
| @@ -37,8 +37,8 @@ public class TestJarIndexInheritanceTree { | |||
| 37 | private ClassEntry m_subClassA = newClass("none/b"); | 37 | private ClassEntry m_subClassA = newClass("none/b"); |
| 38 | private ClassEntry m_subClassAA = newClass("none/d"); | 38 | private ClassEntry m_subClassAA = newClass("none/d"); |
| 39 | private ClassEntry m_subClassB = newClass("none/c"); | 39 | private ClassEntry m_subClassB = newClass("none/c"); |
| 40 | private FieldEntry m_nameField = new FieldEntry(m_baseClass, "a"); | 40 | private FieldEntry m_nameField = newField(m_baseClass, "a", "Ljava/lang/String;"); |
| 41 | private FieldEntry m_numThingsField = new FieldEntry(m_subClassB, "a"); | 41 | private FieldEntry m_numThingsField = newField(m_subClassB, "a", "I"); |
| 42 | 42 | ||
| 43 | public TestJarIndexInheritanceTree() | 43 | public TestJarIndexInheritanceTree() |
| 44 | throws Exception { | 44 | throws Exception { |