public int hashCode()

in text-translators-agent/src/jetbrains/buildServer/agent/messages/regex/ParserCommand.java [108:113]


    public int hashCode() {
      int result = myName != null ? myName.hashCode() : 0;
      result = 31 * result + (myResourcePath != null ? myResourcePath.hashCode() : 0);
      result = 31 * result + (myFile != null ? myFile.hashCode() : 0);
      return result;
    }