summaryrefslogtreecommitdiffstats
path: root/standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-12-01 12:31:24 -0800
committerJon Bratseth <bratseth@oath.com>2018-12-01 12:31:24 -0800
commit872994569344340f13519c92324bf177fc666ac9 (patch)
treefd859c0a38ed68300c743b54ee5ab41a986e273f /standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java
parentce9f57d123d835cc698adf2febe4aae47128031d (diff)
Revert "Merge pull request #7835 from vespa-engine/revert-7833-bratseth/remove-unused-rpc-server-take-2"
This reverts commit ce9f57d123d835cc698adf2febe4aae47128031d, reversing changes made to c2af67b3d11da53655a0750d2e288b584c7b938c.
Diffstat (limited to 'standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java')
-rw-r--r--standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java b/standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java
index 4bbe9986d90..4d968914dfa 100644
--- a/standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java
+++ b/standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java
@@ -24,6 +24,7 @@ import java.util.stream.Collectors;
* @author ollivir
*/
public class LocalFileDb implements FileAcquirer, FileRegistry {
+
private static final Constructor<FileReference> fileReferenceConstructor = createFileReferenceConstructor();
private final Map<FileReference, File> fileReferenceToFile = new HashMap<>();
@@ -94,4 +95,5 @@ public class LocalFileDb implements FileAcquirer, FileRegistry {
throw new IllegalStateException(ex);
}
}
+
}