summaryrefslogtreecommitdiff
path: root/src/proguard/io/FileDataEntry.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/io/FileDataEntry.java')
-rw-r--r--src/proguard/io/FileDataEntry.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proguard/io/FileDataEntry.java b/src/proguard/io/FileDataEntry.java
index 618a092..f188f3b 100644
--- a/src/proguard/io/FileDataEntry.java
+++ b/src/proguard/io/FileDataEntry.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
@@ -33,7 +33,7 @@ public class FileDataEntry implements DataEntry
{
private final File directory;
private final File file;
- private InputStream inputStream;
+ private InputStream inputStream;
public FileDataEntry(File directory,
@@ -53,7 +53,7 @@ public class FileDataEntry implements DataEntry
file.getName() :
file.getPath()
.substring(directory.getPath().length() + File.separator.length())
- .replace(File.separatorChar, ClassConstants.INTERNAL_PACKAGE_SEPARATOR);
+ .replace(File.separatorChar, ClassConstants.PACKAGE_SEPARATOR);
}