javadoc: keep whitespaces in {@code} tags (IDEA-109997)

This commit is contained in:
anna
2013-11-26 18:51:19 +01:00
parent 02cabc4e84
commit d08af6dfed
5 changed files with 41 additions and 9 deletions
@@ -0,0 +1,14 @@
class Foo {
/**
* <pre>
* {@code
* class Clazzz {
* def f[U](u: U) {}
*
* val a = 1
* }
* }
* </pre>
*/
int foo;
}