protected void configure()

in src/main/java/com/googlesource/gerrit/plugins/download/command/CloneCommandsModule.java [23:31]


  protected void configure() {
    bind(CloneCommand.class)
        .annotatedWith(Exports.named("Clone"))
        .to(com.googlesource.gerrit.plugins.download.command.CloneCommand.class);

    bind(CloneCommand.class)
        .annotatedWith(Exports.named("Clone with commit-msg hook"))
        .to(CloneWithCommitMsgHook.class);
  }