All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.errorprone.bugpatterns.threadsafety.AutoValue_ThreadSafety_Violation Maven / Gradle / Ivy

There is a newer version: 2.27.1
Show newest version
package com.google.errorprone.bugpatterns.threadsafety;

import javax.annotation.Generated;
import org.pcollections.ConsPStack;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_ThreadSafety_Violation extends ThreadSafety.Violation {

  private final ConsPStack path;

  AutoValue_ThreadSafety_Violation(
      ConsPStack path) {
    if (path == null) {
      throw new NullPointerException("Null path");
    }
    this.path = path;
  }

  @Override
  public ConsPStack path() {
    return path;
  }

  @Override
  public String toString() {
    return "Violation{"
         + "path=" + path
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof ThreadSafety.Violation) {
      ThreadSafety.Violation that = (ThreadSafety.Violation) o;
      return this.path.equals(that.path());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= path.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy