Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Commit

Permalink
[NLA-337] fix utf-8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram Buitendijk committed Feb 8, 2017
1 parent 18860bf commit f6f32b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private static void appendTextVertex(StringBuilder stringBuilder, String textSeg
.append(n)//
.append(" [shape=box, label=\"")//
.append(escape(textSegment)//
.replace(" ", "â?£")//
.replace(" ", "")//
.replace("\n", "↵"))//
.append("\"];\n");
}
Expand Down

0 comments on commit f6f32b1

Please sign in to comment.