修复Graphics2D的资源没释放问题

This commit is contained in:
Looly
2024-03-15 17:03:39 +08:00
parent 03891277e9
commit 9a3d6857db
5 changed files with 57 additions and 43 deletions

View File

@@ -234,7 +234,7 @@ public class ULID implements Comparable<ULID>, Serializable {
* @param timestamp 时间戳
*/
private static void checkTimestamp(final long timestamp) {
Assert.isTrue((timestamp & TIMESTAMP_MASK) == 0), "ULID does not support timestamps after +10889-08-02T05:31:50.655Z!")
;
Assert.isTrue((timestamp & TIMESTAMP_MASK) == 0,
"ULID does not support timestamps after +10889-08-02T05:31:50.655Z!");
}
}