Skip to content

Commit

Permalink
Merge pull request neuhalje#4 from jayceekay/patch-1
Browse files Browse the repository at this point in the history
Fix example in README
  • Loading branch information
neuhalje authored Mar 22, 2017
2 parents d301cff + f9612d3 commit e310242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ try (
final FileInputStream cipherTextStream = new FileInputStream("/tmp/encrypted.gpg");

final FileOutputStream fileOutput = new FileOutputStream(destFile);
final BufferedOutputStream bufferedOut = new BufferedOutputStream("/tmp/plaintext.txt");
final BufferedOutputStream bufferedOut = new BufferedOutputStream(fileOutput);

final InputStream plaintextStream = BouncyGPG
.decryptAndVerifyStream()
Expand Down

0 comments on commit e310242

Please sign in to comment.