Package org.eclipse.jgit.revwalk

Examples of org.eclipse.jgit.revwalk.FooterKey


            continue;
          }
          tag = at.getCategory().getName().replace(' ', '-');
        }

        if (!contains(footers, new FooterKey(tag), identbuf.toString())) {
          msgbuf.append(tag);
          msgbuf.append(": ");
          msgbuf.append(identbuf);
          msgbuf.append('\n');
        }
View Full Code Here


      throws PatternSyntaxException {
    f = f.trim();
    if (f.endsWith(":")) {
      f = f.substring(0, f.length() - 1);
    }
    this.key = new FooterKey(f);
    this.match = Pattern.compile(m.trim());
    this.system = s.trim();
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.revwalk.FooterKey

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.