summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80202-generics_wildcard.java
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80202-generics_wildcard.java')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80202-generics_wildcard.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80202-generics_wildcard.java b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80202-generics_wildcard.java
deleted file mode 100644
index 358e333b..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80202-generics_wildcard.java
+++ /dev/null
@@ -1,25 +0,0 @@
-public class TestClass {
- private Map< ? , ? > map1 = null;
- private Map< ? , ? > map2 = null;
- private Map< ? , ? > map3 = null;
-
- public static HttpUriRequest getHttpUriRequest(TestClassAPIRequestMethod method, String apiPath) {
- switch (method) {
- case BOTTOM_LEFT:
- break;
- case GET:
- req = new HttpGet(url);
- break;
- case POST:
- req = new HttpPost(url);
- break;
- case PUT:
- req = new HttpPut(url);
- break;
- case DELETE:
- req = new HttpDelete(url);
- break;
- }
- return req;
- }
-}