Package sbt.testing

Examples of sbt.testing.AnnotatedFingerprint


public abstract class AbstractAnnotatedFingerprint implements AnnotatedFingerprint {
  @Override
  public boolean equals(Object obj) {
    if (!(obj instanceof AnnotatedFingerprint)) return false;
    AnnotatedFingerprint f = (AnnotatedFingerprint) obj;
    return annotationName().equals(f.annotationName()) && isModule() == f.isModule();
  }
View Full Code Here

TOP

Related Classes of sbt.testing.AnnotatedFingerprint

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.