summaryrefslogtreecommitdiffstats
path: root/standalone-container
diff options
context:
space:
mode:
Diffstat (limited to 'standalone-container')
-rw-r--r--standalone-container/src/main/java/com/yahoo/container/standalone/LocalFileDb.java4
1 files changed, 2 insertions, 2 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 977443c8e5b..df31e454cd7 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
@@ -79,8 +79,8 @@ public class LocalFileDb implements FileAcquirer, FileRegistry {
}
@Override
- public FileReference addBlob(ByteBuffer blob) {
- throw new RuntimeException("addBlob(ByteBuffer blob) is not implemented here.");
+ public FileReference addBlob(String name, ByteBuffer blob) {
+ throw new RuntimeException("addBlob(String name, ByteBuffer blob) is not implemented here.");
}
private static Constructor<FileReference> createFileReferenceConstructor() {