Skip to content

Commit

Permalink
Add missing newlines after fix application errors
Browse files Browse the repository at this point in the history
RELNOTES: N/A

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=156274784
  • Loading branch information
cushon authored and ronshapiro committed May 24, 2017
1 parent daa72b7 commit 1d9da4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public void finished(TaskEvent event) {
refactoringResult = refactoringCollection.applyChanges(event.getSourceFile().toUri());
} catch (Exception e) {
PrintWriter out = Log.instance(context).getWriter(WriterKind.ERROR);
out.append(e.getMessage());
out.println(e.getMessage());
out.flush();
return;
}
Expand Down

0 comments on commit 1d9da4c

Please sign in to comment.