diff --git a/presto-base-arrow-flight/src/main/java/com/facebook/plugin/arrow/ArrowModule.java b/presto-base-arrow-flight/src/main/java/com/facebook/plugin/arrow/ArrowModule.java index ed85f961b291..372ce3375f79 100644 --- a/presto-base-arrow-flight/src/main/java/com/facebook/plugin/arrow/ArrowModule.java +++ b/presto-base-arrow-flight/src/main/java/com/facebook/plugin/arrow/ArrowModule.java @@ -49,6 +49,6 @@ public void configure(Binder binder) binder.bind(ArrowPageSourceProvider.class).in(Scopes.SINGLETON); binder.bind(ConnectorPageSourceProvider.class).to(ArrowPageSourceProvider.class).in(Scopes.SINGLETON); binder.bind(Connector.class).to(ArrowConnector.class).in(Scopes.SINGLETON); - binder.bind(ArrowBlockBuilder.class).to(ArrowBlockBuilder.class).in(Scopes.SINGLETON); + binder.bind(ArrowBlockBuilder.class).in(Scopes.SINGLETON); } }