summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2019-10-19 16:31:03 +0200
committergjoranv <gv@verizonmedia.com>2019-10-19 18:11:47 +0200
commitf3658fcce3b1839429e69aa7ad92981277876579 (patch)
tree200f0ae9068530014175d825f284966dc0e5030b /bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
parenta0b4bc094a65e936eedfceb3b807917df85816c8 (diff)
Restructure bundle-plugin-test to allow multiple test bundles.
Diffstat (limited to 'bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java')
-rw-r--r--bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java b/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
deleted file mode 100644
index 3220171de13..00000000000
--- a/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.test;
-
-
-/**
- * Test class for integration tests. Used to verify that nested classes are visited.
- *
- * Do not replace the fully qualified class names with imports!
- */
-public class SimpleSearcher2 extends SimpleSearcher {
- public void dummy() {}
-
- private class InnerClassProcessor extends com.yahoo.processing.Processor {
- @Override
- public com.yahoo.processing.Response process(com.yahoo.processing.Request request,
- com.yahoo.processing.execution.Execution execution) {
- return null;
- }
- }
-
- private static class NestedStaticClass {
- private com.yahoo.metrics.simple.Counter counter;
-
- @com.google.inject.Inject
- public NestedStaticClass() { }
- }
-
-}