summaryrefslogtreecommitdiff
path: root/tools/gnu/classpath/tools/jar/Updater.java
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gnu/classpath/tools/jar/Updater.java')
-rw-r--r--tools/gnu/classpath/tools/jar/Updater.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gnu/classpath/tools/jar/Updater.java b/tools/gnu/classpath/tools/jar/Updater.java
index f25d56fdc..e1df852ff 100644
--- a/tools/gnu/classpath/tools/jar/Updater.java
+++ b/tools/gnu/classpath/tools/jar/Updater.java
@@ -72,7 +72,7 @@ public class Updater
// Write all the new entries to a temporary file.
File tmpFile = File.createTempFile("jarcopy", null,
- parameters.archiveFile.getParentFile());
+ parameters.archiveFile.getParentFile());
OutputStream os = new BufferedOutputStream(new FileOutputStream(tmpFile));
writeCommandLineEntries(parameters, os);
@@ -90,8 +90,8 @@ public class Updater
close();
if (!tmpFile.renameTo(parameters.archiveFile))
{
- throw new IOException("Couldn't rename new JAR file " + tmpFile +
- "to " + parameters.archiveFile);
+ throw new IOException("Couldn't rename new JAR file " + tmpFile +
+ "to " + parameters.archiveFile);
}
}