Package hudson.scm.SubversionChangeLogSet

Examples of hudson.scm.SubversionChangeLogSet.LogEntry


            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }

            LogEntry that = (LogEntry) o;

            if (revision != that.revision) {
                return false;
            }
            if (author != null ? !author.equals(that.author) : that.author != null) {
View Full Code Here

TOP

Related Classes of hudson.scm.SubversionChangeLogSet.LogEntry

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.