@deprecated with multi-line message in Javadoc converted to @Deprecated("long ugly string") #KT-19644 Fixed (#1253)

This commit is contained in:
Toshiaki Kameyama
2017-08-31 21:15:15 +09:00
committed by Dmitry Jemerov
parent 4e4bf31016
commit 0246b82833
5 changed files with 39 additions and 1 deletions
@@ -0,0 +1,10 @@
/**
* @deprecated Ph'nglui mglw'nafh
* Cthulhu R'lyeh wgah'nagl fhtagn.
* 'In His House at R'lyeh
* Dead Cthulhu waits dreaming,
* yet He shall rise and His kingdom
* shall cover the Earth.'
*/
public class TestDeprecatedInJavadocWithMultilineMessage {
}
@@ -0,0 +1,7 @@
@Deprecated("Ph'nglui mglw'nafh\n" +
" Cthulhu R'lyeh wgah'nagl fhtagn.\n" +
" 'In His House at R'lyeh\n" +
" Dead Cthulhu waits dreaming,\n" +
" yet He shall rise and His kingdom\n" +
" shall cover the Earth.'")
class TestDeprecatedInJavadocWithMultilineMessage