github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/FanoutReplicationConfig.java [39:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void addSecureCredentials(String authUsername, String authToken)
      throws IOException, ConfigInvalidException {
    secureConf.load();
    secureConf.setString("remote", authUsername, "username", authUsername);
    secureConf.setString("remote", authUsername, "password", authToken);
    secureConf.save();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/git/FileBasedReplicationConfig.java [39:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public synchronized void addSecureCredentials(String authUsername, String authToken)
      throws IOException, ConfigInvalidException {
    secureConf.load();
    secureConf.setString("remote", authUsername, "username", authUsername);
    secureConf.setString("remote", authUsername, "password", authToken);
    secureConf.save();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



