提交 bb97fbcb 编写于 作者: P prr

7183251: Netbeans editor renders text wrong on JDK 7u6 build 17

Reviewed-by: igor, jgodinez
上级 c58afece
...@@ -137,8 +137,9 @@ public final class SunLayoutEngine implements LayoutEngine, LayoutEngineFactory ...@@ -137,8 +137,9 @@ public final class SunLayoutEngine implements LayoutEngine, LayoutEngineFactory
LayoutEngine e = (LayoutEngine)cache.get(key); LayoutEngine e = (LayoutEngine)cache.get(key);
if (e == null) { if (e == null) {
e = new SunLayoutEngine(key.copy()); LayoutEngineKey copy = key.copy();
cache.put(key, e); e = new SunLayoutEngine(copy);
cache.put(copy, e);
} }
return e; return e;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册