Browse Source

Merge branch '1.9.x'

master
Stefan Bodewig 8 years ago
parent
commit
1f045ecb31
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/Rpm.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/Rpm.java View File

@@ -151,7 +151,7 @@ public class Rpm extends Task {
if (output != null) {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(output);
fos = new FileOutputStream(output); //NOSONAR
BufferedOutputStream bos = new BufferedOutputStream(fos);
outputstream = new PrintStream(bos);
} catch (IOException e) {


Loading…
Cancel
Save