Hello!
ScpTimestamp. parseTime must be like this:

    public static ScpTimestamp parseTime(String line) throws 
NumberFormatException {
        String[] numbers = GenericUtils.split(line.substring(1), ' ');
//        return new 
ScpTimestamp(TimeUnit.SECONDS.toMillis(Long.parseLong(numbers[0])), // It is an 
error!
//                TimeUnit.SECONDS.toMillis(Long.parseLong(numbers[2])));       
                                        // It is an error!
        return new 
ScpTimestamp(TimeUnit.SECONDS.toMillis(Long.parseLong(numbers[1])),    // Must 
be like this!
                TimeUnit.SECONDS.toMillis(Long.parseLong(numbers[3])));         
                                        // Must be like this!
    }

Reply via email to