summaryrefslogtreecommitdiffstats
path: root/config_test/src/main/java/com/yahoo/configtest/Demo.java
diff options
context:
space:
mode:
Diffstat (limited to 'config_test/src/main/java/com/yahoo/configtest/Demo.java')
-rw-r--r--config_test/src/main/java/com/yahoo/configtest/Demo.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/config_test/src/main/java/com/yahoo/configtest/Demo.java b/config_test/src/main/java/com/yahoo/configtest/Demo.java
deleted file mode 100644
index 792fffa36a9..00000000000
--- a/config_test/src/main/java/com/yahoo/configtest/Demo.java
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.configtest;
-
-/**
- * Just check we manage to compile something that requires configuration and
- * has no dependencies to Vespa.
- */
-public class Demo {
- public final String greeting;
-
- public Demo(GreetingConfig config) {
- greeting = config.greeting();
- }
-}