diff options
Diffstat (limited to 'src/proguard/Configuration.java')
-rw-r--r-- | src/proguard/Configuration.java | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/proguard/Configuration.java b/src/proguard/Configuration.java index 2a39870..d513e2c 100644 --- a/src/proguard/Configuration.java +++ b/src/proguard/Configuration.java @@ -2,7 +2,7 @@ * ProGuard -- shrinking, optimization, obfuscation, and preverification * of Java bytecode. * - * Copyright (c) 2002-2011 Eric Lafortune (eric@graphics.cornell.edu) + * Copyright (c) 2002-2009 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 @@ -50,7 +50,7 @@ public class Configuration * Specifies whether to skip non-public library classes while reading * library jars. */ - public boolean skipNonPublicLibraryClasses = false; + public boolean skipNonPublicLibraryClasses = true; /** * Specifies whether to skip non-public library class members while reading @@ -237,13 +237,6 @@ public class Configuration public List keepAttributes; /** - * Specifies whether method parameter names and types should be kept for - * methods that are not obfuscated. This is achieved by keeping partial - * "LocalVariableTable" and "LocalVariableTypeTable" attributes. - */ - public boolean keepParameterNames = false; - - /** * An optional replacement for all SourceFile attributes. */ public String newSourceFileAttribute; |