aboutsummaryrefslogtreecommitdiffstats
path: root/src/proguard/io/DataEntryRewriter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/io/DataEntryRewriter.java')
-rw-r--r--src/proguard/io/DataEntryRewriter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proguard/io/DataEntryRewriter.java b/src/proguard/io/DataEntryRewriter.java
index ec07767..666aa0d 100644
--- a/src/proguard/io/DataEntryRewriter.java
+++ b/src/proguard/io/DataEntryRewriter.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
@@ -124,7 +124,7 @@ public class DataEntryRewriter extends DataEntryCopier
// Replace dots by forward slashes.
String className = containsDots ?
- word.replace('.', ClassConstants.INTERNAL_PACKAGE_SEPARATOR) :
+ word.replace('.', ClassConstants.PACKAGE_SEPARATOR) :
word;
// Find the class corrsponding to the word.
@@ -137,7 +137,7 @@ public class DataEntryRewriter extends DataEntryCopier
{
// Replace forward slashes by dots.
newWord = containsDots ?
- newClassName.replace(ClassConstants.INTERNAL_PACKAGE_SEPARATOR, '.') :
+ newClassName.replace(ClassConstants.PACKAGE_SEPARATOR, '.') :
newClassName;
}
}