Package edu.umd.cs.findbugs.BugInstance

Examples of edu.umd.cs.findbugs.BugInstance.XmlProps


        if (v == null) {
            return getBugCollection().getTimestamp();
        }
        long firstSeen = v.getTimestamp();
        if (b.hasXmlProps()) {
            XmlProps props = b.getXmlProps();
            Date propsFirstSeen = props.getFirstSeen();
            if (propsFirstSeen != null && firstSeen > propsFirstSeen.getTime()) {
                firstSeen = propsFirstSeen.getTime();
            }
        }
        return firstSeen;
View Full Code Here

TOP

Related Classes of edu.umd.cs.findbugs.BugInstance.XmlProps

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.