Here you can find the source of getTimeDiff(LocalTime start, LocalTime end)
Parameter | Description |
---|---|
start | starting LocalTime |
end | ending LocalTime |
@Deprecated public static LocalTime getTimeDiff(LocalTime start, LocalTime end)
//package com.java2s; //License from project: Open Source License import java.time.LocalTime; public class Main { /**//from w w w. j av a 2 s . com * This will return the time difference between a starting and ending time * * @param start starting LocalTime * @param end ending LocalTime * @return LocalTime containing the difference in time */ @Deprecated public static LocalTime getTimeDiff(LocalTime start, LocalTime end) { return null; } }