aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-core/src/main/java/com/yahoo/feedapi/SessionFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient-core/src/main/java/com/yahoo/feedapi/SessionFactory.java')
-rwxr-xr-xvespaclient-core/src/main/java/com/yahoo/feedapi/SessionFactory.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/vespaclient-core/src/main/java/com/yahoo/feedapi/SessionFactory.java b/vespaclient-core/src/main/java/com/yahoo/feedapi/SessionFactory.java
index 6dce2b6f315..52583052ddf 100755
--- a/vespaclient-core/src/main/java/com/yahoo/feedapi/SessionFactory.java
+++ b/vespaclient-core/src/main/java/com/yahoo/feedapi/SessionFactory.java
@@ -1,7 +1,6 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.feedapi;
-import com.yahoo.jdisc.Metric;
import com.yahoo.messagebus.ReplyHandler;
/**
@@ -17,5 +16,5 @@ public interface SessionFactory {
* @param handler A replyhandler to callback when receiving replies from messagebus
* @return The session to use for sending messages.
*/
- SendSession createSendSession(ReplyHandler handler, Metric metric);
+ SendSession createSendSession(ReplyHandler handler);
}