Skip to content

Commit

Permalink
Cleanup sysout in test
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeens committed Nov 10, 2021
1 parent eee485d commit 9c66092
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions src/test/java/eu/xenit/contentcloud/bard/AnnotationSpecTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -293,37 +293,6 @@ public class IsAnnotated {
+ ")\n"
+ "class Taco {\n"
+ "}\n");

System.out.println(""
+ "package com.squareup.tacos;\n"
+ "\n"
+ "import com.squareup.javapoet.AnnotationSpecTest;\n"
+ "import java.lang.Double;\n"
+ "import java.lang.Float;\n"
+ "import java.lang.Override;\n"
+ "\n"
+ "@AnnotationSpecTest.HasDefaultsAnnotation("
+ "a = 5, "
+ "b = 6, "
+ "c = 7, "
+ "d = 8, "
+ "e = 9.0f, "
+ "f = 11.1, "
+ "g = {'\\u0000', '쫾', 'z', '€', 'ℕ', '\"', '\\'', '\\t', '\\n'}, "
+ "h = true, "
+ "i = AnnotationSpecTest.Breakfast.WAFFLES, "
+ "j = @AnnotationSpecTest.AnnotationA, "
+ "k = \"maple\", "
+ "l = Override.class, "
+ "m = {9, 8, 1}, "
+ "n = {AnnotationSpecTest.Breakfast.WAFFLES, AnnotationSpecTest.Breakfast.PANCAKES}, "
+ "o = AnnotationSpecTest.Breakfast.PANCAKES, "
+ "p = 1701, "
+ "q = @AnnotationSpecTest.AnnotationC(\"bar\"), "
+ "r = {Float.class, Double.class}"
+ ")\n"
+ "class Taco {\n"
+ "}\n");
}

@Test public void disallowsNullMemberName() {
Expand Down

0 comments on commit 9c66092

Please sign in to comment.