diff options
Diffstat (limited to 'core/testdata/format/javaDeprecated.java')
-rw-r--r-- | core/testdata/format/javaDeprecated.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/testdata/format/javaDeprecated.java b/core/testdata/format/javaDeprecated.java new file mode 100644 index 00000000..9694a444 --- /dev/null +++ b/core/testdata/format/javaDeprecated.java @@ -0,0 +1,5 @@ +class Foo { + /** @deprecated use {@link #bar} instead */ + public void foo() {} + public void bar() {} +} |