summaryrefslogtreecommitdiff
path: root/src/proguard/classfile/attribute/BootstrapMethodsAttribute.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/classfile/attribute/BootstrapMethodsAttribute.java')
-rwxr-xr-xsrc/proguard/classfile/attribute/BootstrapMethodsAttribute.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/proguard/classfile/attribute/BootstrapMethodsAttribute.java b/src/proguard/classfile/attribute/BootstrapMethodsAttribute.java
index 4471a75..20b8965 100755
--- a/src/proguard/classfile/attribute/BootstrapMethodsAttribute.java
+++ b/src/proguard/classfile/attribute/BootstrapMethodsAttribute.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,9 +20,8 @@
*/
package proguard.classfile.attribute;
-import proguard.classfile.*;
+import proguard.classfile.Clazz;
import proguard.classfile.attribute.visitor.*;
-import proguard.classfile.constant.visitor.ConstantVisitor;
/**
* This Attribute represents a bootstrap methods attribute.
@@ -66,8 +65,7 @@ public class BootstrapMethodsAttribute extends Attribute
/**
- * Applies the given constant pool visitor to all bootstrap method info
- * entries.
+ * Applies the given visitor to all bootstrap method info entries.
*/
public void bootstrapMethodEntriesAccept(Clazz clazz, BootstrapMethodInfoVisitor bootstrapMethodInfoVisitor)
{
@@ -81,8 +79,8 @@ public class BootstrapMethodsAttribute extends Attribute
/**
- * Applies the given constant pool visitor to the specified bootstrap method
- * info entry.
+ * Applies the given visitor to the specified bootstrap method info
+ * entry.
*/
public void bootstrapMethodEntryAccept(Clazz clazz,
int bootstrapMethodIndex,