summaryrefslogtreecommitdiff
path: root/src/proguard/gui/MemberSpecificationsPanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/gui/MemberSpecificationsPanel.java')
-rw-r--r--src/proguard/gui/MemberSpecificationsPanel.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proguard/gui/MemberSpecificationsPanel.java b/src/proguard/gui/MemberSpecificationsPanel.java
index 6a72a1d..92feac6 100644
--- a/src/proguard/gui/MemberSpecificationsPanel.java
+++ b/src/proguard/gui/MemberSpecificationsPanel.java
@@ -2,7 +2,7 @@
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
- * Copyright (c) 2002-2013 Eric Lafortune (eric@graphics.cornell.edu)
+ * Copyright (c) 2002-2014 Eric Lafortune (eric@graphics.cornell.edu)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
@@ -20,7 +20,7 @@
*/
package proguard.gui;
-import proguard.*;
+import proguard.MemberSpecification;
import proguard.classfile.ClassConstants;
import proguard.classfile.util.ClassUtil;
@@ -240,7 +240,7 @@ final class MemberSpecificationsPanel extends ListPanel
(descriptor == null ? name == null ?
"<methods>" :
"***" + ' ' + name + "(...)" :
- ClassUtil.externalFullMethodDescription(ClassConstants.INTERNAL_METHOD_NAME_INIT,
+ ClassUtil.externalFullMethodDescription(ClassConstants.METHOD_NAME_INIT,
0,
name == null ? "*" : name,
descriptor)));