@deprecated with multi-line message in Javadoc converted to @Deprecated("long ugly string") #KT-19644 Fixed (#1253)
This commit is contained in:
committed by
Dmitry Jemerov
parent
4e4bf31016
commit
0246b82833
+10
@@ -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 {
|
||||
}
|
||||
+7
@@ -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
|
||||
Reference in New Issue
Block a user