summaryrefslogtreecommitdiff
path: root/src/proguard/classfile/attribute/Attribute.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/classfile/attribute/Attribute.java')
-rw-r--r--src/proguard/classfile/attribute/Attribute.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/proguard/classfile/attribute/Attribute.java b/src/proguard/classfile/attribute/Attribute.java
index f34a0ee..06845e0 100644
--- a/src/proguard/classfile/attribute/Attribute.java
+++ b/src/proguard/classfile/attribute/Attribute.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
@@ -84,7 +84,7 @@ public abstract class Attribute implements VisitorAccepter
*/
public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor)
{
- // Delegate the default invocation if the field is null anyway.
+ // Delegate to the default invocation if the field is null anyway.
if (field == null)
{
accept(clazz, attributeVisitor);
@@ -100,7 +100,7 @@ public abstract class Attribute implements VisitorAccepter
*/
public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
{
- // Delegate the default invocation if the method is null anyway.
+ // Delegate to the default invocation if the method is null anyway.
if (method == null)
{
accept(clazz, (Field)null, attributeVisitor);
@@ -116,7 +116,8 @@ public abstract class Attribute implements VisitorAccepter
*/
public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
{
- // Delegate the default invocation if the code attribute is null anyway.
+ // Delegate to the default invocation if the code attribute is null
+ // anyway.
if (codeAttribute == null)
{
accept(clazz, method, attributeVisitor);