Skip to content

Commit

Permalink
fixed files form Lang #52
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent 8560515 commit 2b06dcf
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ private static void escapeJavaStyleString(Writer out, String str, boolean escape
out.write('\\');
out.write('\\');
break;
case '/':
out.write('\\');
out.write('/');
break;
default :
out.write(ch);
break;
Expand Down

0 comments on commit 2b06dcf

Please sign in to comment.