diff options
| author | Nick Sandonato | 2012-10-24 18:59:05 +0000 |
|---|---|---|
| committer | Nick Sandonato | 2012-10-24 18:59:05 +0000 |
| commit | 1e464cc79cc1b0ae733ca7822893ef6bbcf0c046 (patch) | |
| tree | c264b691fa47f3f0ee72502a1552c29091d34152 | |
| parent | 1c861a2e4abcdeeddb228c3bbcefe80d8f72abbe (diff) | |
| download | webtools.sourceediting-1e464cc79cc1b0ae733ca7822893ef6bbcf0c046.tar.gz webtools.sourceediting-1e464cc79cc1b0ae733ca7822893ef6bbcf0c046.tar.xz webtools.sourceediting-1e464cc79cc1b0ae733ca7822893ef6bbcf0c046.zip | |
[237567] [document] html editor mishandles encoding - it may destroy filev201210241859
| -rw-r--r-- | bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contenttype/EncodingGuesser.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contenttype/EncodingGuesser.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contenttype/EncodingGuesser.java index bdbb65ae02..811a80746d 100644 --- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contenttype/EncodingGuesser.java +++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contenttype/EncodingGuesser.java @@ -112,7 +112,7 @@ public class EncodingGuesser { } private static boolean isGuessingEnabled() { - String value = System.getProperty("org.eclipse.wst.sse.html.encoding.guess"); + String value = System.getProperty("org.eclipse.wst.html.encoding.guess"); return value == null || Boolean.valueOf(value).booleanValue(); } |
