mirror of https://github.com/apache/druid.git
indent
This commit is contained in:
parent
3658ab24c3
commit
607ef174c5
|
@ -78,18 +78,17 @@ public class SqlModule implements Module
|
|||
return;
|
||||
}
|
||||
|
||||
PolyBind.optionBinder(binder, Key.get(ViewManager.class))
|
||||
.addBinding(NoopViewManager.TYPE)
|
||||
.to(NoopViewManager.class)
|
||||
.in(LazySingleton.class);
|
||||
|
||||
PolyBind.createChoiceWithDefault(
|
||||
binder,
|
||||
PROPERTY_SQL_VIEW_MANAGER_TYPE,
|
||||
Key.get(ViewManager.class),
|
||||
NoopViewManager.TYPE
|
||||
);
|
||||
PolyBind.optionBinder(binder, Key.get(ViewManager.class))
|
||||
.addBinding(NoopViewManager.TYPE)
|
||||
.to(NoopViewManager.class)
|
||||
.in(LazySingleton.class);
|
||||
|
||||
PolyBind.createChoiceWithDefault(
|
||||
binder,
|
||||
PROPERTY_SQL_VIEW_MANAGER_TYPE,
|
||||
Key.get(ViewManager.class),
|
||||
NoopViewManager.TYPE
|
||||
);
|
||||
|
||||
PolyBind.optionBinder(binder, Key.get(DruidSchemaManager.class))
|
||||
.addBinding(NoopDruidSchemaManager.TYPE)
|
||||
|
|
Loading…
Reference in New Issue