Package com.gitblit.utils.DiffUtils

Examples of com.gitblit.utils.DiffUtils.NormalizedDiffStat


    super.onInitialize();

    final String diffStat = MessageFormat.format(getString("gb.diffStat"), "" + insertions, "" + deletions);
    WicketUtils.setHtmlTooltip(this, diffStat);

    final NormalizedDiffStat n = DiffUtils.normalizeDiffStat(5, insertions, deletions);

    final String segment;
    if (inline) {
      segment = "●";
    } else {
View Full Code Here

TOP

Related Classes of com.gitblit.utils.DiffUtils.NormalizedDiffStat

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.