Sample 0 [from 17 instances]

Class20.timestampInRange(Timestamp lowerBound,Timestamp upperBound,Timestamp timestamp)#0{
        if (timestamp == null) {
            if (lowerBound == null) {
                return true;
            else {
                return false;
            }
        }
        if ((lowerBound == null|| (timestamp.compareTo(lowerBound0)) {
            if ((upperBound == null|| (timestamp.compareTo(upperBound0)) {
           
}


Sample 1 [from 6 instances]

Class40.compare(Object o1,Object o2,byte dt1,byte dt2)#39{
        return ((Timestamp)o1).compareTo((Timestamp)o2);
}