From e7730355588d1ee8c86de19c76565cc6d991f38a Mon Sep 17 00:00:00 2001 From: Paweł Marks Date: Wed, 12 Feb 2020 16:01:02 +0100 Subject: Removes old javadoc plugin and excludes old xml plugin --- plugins/javadoc8/testdata/javadoc/deprecated.java | 28 ----------------------- 1 file changed, 28 deletions(-) delete mode 100644 plugins/javadoc8/testdata/javadoc/deprecated.java (limited to 'plugins/javadoc8/testdata/javadoc/deprecated.java') diff --git a/plugins/javadoc8/testdata/javadoc/deprecated.java b/plugins/javadoc8/testdata/javadoc/deprecated.java deleted file mode 100644 index 5a6cdd77..00000000 --- a/plugins/javadoc8/testdata/javadoc/deprecated.java +++ /dev/null @@ -1,28 +0,0 @@ -package bar; - -/** - * Just a fruit - */ -public class Banana { - private Double weight; - - /** - * Returns weight - * - * @return weight - * @deprecated - */ - public Double getWeight() { - return weight; - } - - /** - * Sets weight - * - * @param weight in grams - * @deprecated with message - */ - public void setWeight(Double weight) { - this.weight = weight; - } -} \ No newline at end of file -- cgit