aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-01-28 09:09:03 +0100
committerJon Bratseth <bratseth@verizonmedia.com>2019-01-28 09:09:03 +0100
commitf91b6093c9b018a49a36f4d34ac0b2acbe1b31d8 (patch)
treed8a8eea392dfe29ca8646f16c887ab5efdaa60dd /vespajlib
parent4fba0da4b970af2c31ed543c378e9641dd1b6106 (diff)
Remove dead code
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/data/access/Inspectable.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/data/access/Inspectable.java b/vespajlib/src/main/java/com/yahoo/data/access/Inspectable.java
index f982d887f44..69151048e78 100644
--- a/vespajlib/src/main/java/com/yahoo/data/access/Inspectable.java
+++ b/vespajlib/src/main/java/com/yahoo/data/access/Inspectable.java
@@ -7,6 +7,8 @@ package com.yahoo.data.access;
* impractical to implement the Inspector interface directly.
**/
public interface Inspectable {
- /** get an Inspector exposing this object's structured data. */
- public Inspector inspect();
+
+ /** Returns an Inspector exposing this object's structured data. */
+ Inspector inspect();
+
}