workaround for <p/> inside <pre> in javadoc preview in JEditorPane (IDEA-127430)

This commit is contained in:
Anna Kozlova
2014-07-21 17:56:23 +02:00
parent ae4f3d96ec
commit 824f4329b2
4 changed files with 21 additions and 0 deletions
@@ -0,0 +1,10 @@
class Test {
/**
* <pre>
* foo
* <p/>
* bar
* </pre>
*/
public String field = null;
}