We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85897ed commit 17fa785Copy full SHA for 17fa785
tests/simplify-01/src/test/java/org/jvnet/jaxb2_commons/plugin/simplify/tests01/Gh2Test.java
@@ -1,16 +1,21 @@
1
package org.jvnet.jaxb2_commons.plugin.simplify.tests01;
2
3
+import java.util.Date;
4
+
5
+import javax.xml.datatype.Duration;
6
7
import org.junit.Test;
8
9
public class Gh2Test {
10
11
@Test
- public void compiles()
- {
12
+ public void compiles() {
13
final Gh2 item = new Gh2();
- item.getA();
- item.getB();
- item.getC();
14
-
+ @SuppressWarnings("unused")
15
+ final String a = item.getA();
16
17
+ final Date b = item.getB();
18
19
+ final Duration c = item.getC();
20
}
21
0 commit comments