aboutsummaryrefslogtreecommitdiffstats
path: root/src/proguard/ant/KeepSpecificationElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/ant/KeepSpecificationElement.java')
-rw-r--r--src/proguard/ant/KeepSpecificationElement.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/proguard/ant/KeepSpecificationElement.java b/src/proguard/ant/KeepSpecificationElement.java
index e36b744..feabc18 100644
--- a/src/proguard/ant/KeepSpecificationElement.java
+++ b/src/proguard/ant/KeepSpecificationElement.java
@@ -2,7 +2,7 @@
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
- * Copyright (c) 2002-2009 Eric Lafortune (eric@graphics.cornell.edu)
+ * Copyright (c) 2002-2013 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
@@ -39,9 +39,9 @@ public class KeepSpecificationElement extends ClassSpecificationElement
/**
* Adds the contents of this class specification element to the given list.
* @param keepSpecifications the class specifications to be extended.
- * @param markClasses specifies whether to mark the classes.
- * @param markConditionally specifies whether to mark the classes
- * and class members conditionally.
+ * @param markClasses specifies whether to mark the classes.
+ * @param markConditionally specifies whether to mark the classes
+ * and class members conditionally.
*/
public void appendTo(List keepSpecifications,
boolean markClasses,
@@ -50,16 +50,16 @@ public class KeepSpecificationElement extends ClassSpecificationElement
// Get the referenced file set, or else this one.
KeepSpecificationElement keepSpecificationElement = isReference() ?
(KeepSpecificationElement)getCheckedRef(this.getClass(),
- this.getClass().getName()) :
+ this.getClass().getName()) :
this;
KeepClassSpecification keepClassSpecification =
new KeepClassSpecification(markClasses,
- markConditionally,
- allowShrinking,
- allowOptimization,
- allowObfuscation,
- createClassSpecification(keepSpecificationElement));
+ markConditionally,
+ allowShrinking,
+ allowOptimization,
+ allowObfuscation,
+ createClassSpecification(keepSpecificationElement));
// Add it to the list.
keepSpecifications.add(keepClassSpecification);