Skip to content

Commit afbf570

Browse files
committed
Fix #8 : On Mac OSX, changing debug status causes text garbled
1 parent 7848ae7 commit afbf570

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/netbeans/modules/php/wordpress/ui/status/DebugStatusLineElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private void writeConfig(String debugLv) {
176176
return;
177177
}
178178
try {
179-
List<String> lines = config.asLines();
179+
List<String> lines = config.asLines(Charset.UTF8);
180180
Pattern pattern = Pattern.compile(DEBUG_REGEX);
181181
PrintWriter pw = new PrintWriter(new OutputStreamWriter(config.getOutputStream(), Charset.UTF8));
182182
try {

0 commit comments

Comments
 (0)