From cf3ffcee30083a71e68e3edb9ecbb936cc255992 Mon Sep 17 00:00:00 2001 From: jeff Date: Sun, 28 Sep 2014 15:20:54 -0400 Subject: added proper support for renaming constructors --- test/cuchaz/enigma/EntryFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/cuchaz') diff --git a/test/cuchaz/enigma/EntryFactory.java b/test/cuchaz/enigma/EntryFactory.java index 66f83df..5a8a427 100644 --- a/test/cuchaz/enigma/EntryFactory.java +++ b/test/cuchaz/enigma/EntryFactory.java @@ -42,21 +42,21 @@ public class EntryFactory public static EntryReference newFieldReferenceByMethod( FieldEntry fieldEntry, String callerClassName, String callerName, String callerSignature ) { - return new EntryReference( fieldEntry, newMethod( callerClassName, callerName, callerSignature ) ); + return new EntryReference( fieldEntry, "", newMethod( callerClassName, callerName, callerSignature ) ); } public static EntryReference newFieldReferenceByConstructor( FieldEntry fieldEntry, String callerClassName, String callerSignature ) { - return new EntryReference( fieldEntry, newConstructor( callerClassName, callerSignature ) ); + return new EntryReference( fieldEntry, "", newConstructor( callerClassName, callerSignature ) ); } public static EntryReference newBehaviorReferenceByMethod( BehaviorEntry behaviorEntry, String callerClassName, String callerName, String callerSignature ) { - return new EntryReference( behaviorEntry, newMethod( callerClassName, callerName, callerSignature ) ); + return new EntryReference( behaviorEntry, "", newMethod( callerClassName, callerName, callerSignature ) ); } public static EntryReference newBehaviorReferenceByConstructor( BehaviorEntry behaviorEntry, String callerClassName, String callerSignature ) { - return new EntryReference( behaviorEntry, newConstructor( callerClassName, callerSignature ) ); + return new EntryReference( behaviorEntry, "", newConstructor( callerClassName, callerSignature ) ); } } -- cgit v1.2.3