public boolean equals()

in runAs-agent/src/main/java/jetbrains/buildServer/runAs/agent/RunAsParams.java [23:31]


  public boolean equals(final Object o) {
    if (this == o) return true;
    if (!(o instanceof RunAsParams)) return false;

    final RunAsParams that = (RunAsParams)o;

    return getCommandLineArguments().equals(that.getCommandLineArguments());

  }