Package com.google.gerrit.reviewdb.client.AccountDiffPreference

Examples of com.google.gerrit.reviewdb.client.AccountDiffPreference.Whitespace


  public PatchList get(final Change change, final PatchSet patchSet)
      throws PatchListNotAvailableException {
    final Project.NameKey projectKey = change.getProject();
    final ObjectId a = null;
    final ObjectId b = ObjectId.fromString(patchSet.getRevision().get());
    final Whitespace ws = Whitespace.IGNORE_NONE;
    return get(new PatchListKey(projectKey, a, b, ws));
  }
View Full Code Here

TOP

Related Classes of com.google.gerrit.reviewdb.client.AccountDiffPreference.Whitespace

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.