是否对应秒数 @param calendar Calendar @param second 待判断秒数 @return true yes, false no
(
final Calendar calendar,
final int second
)
| 1798 | * @return {@code true} yes, {@code false} no |
| 1799 | */ |
| 1800 | public static boolean isSecond( |
| 1801 | final Calendar calendar, |
| 1802 | final int second |
| 1803 | ) { |
| 1804 | return second != -1 && second == getSecond(calendar); |
| 1805 | } |
| 1806 | |
| 1807 | // = |
| 1808 |
nothing calls this directly
no test coverage detected