v0.0.3
Some checks failed
CI/CD / build-deploy (pull_request) Failing after 1m27s

This commit is contained in:
Timi
2026-05-10 16:27:33 +08:00
parent 7119d1175c
commit 17eb4af81c
9 changed files with 245 additions and 119 deletions

View File

@@ -1,8 +1,8 @@
package com.imyeyu.fx.utils;
import javafx.util.StringConverter;
import com.imyeyu.java.ref.Ref;
import com.imyeyu.utils.Time;
import javafx.util.StringConverter;
import java.text.ParseException;
import java.time.LocalDate;
@@ -52,11 +52,7 @@ public class StringConverters {
if (object == null) {
return "";
}
try {
return Ref.getFieldValue(object, "name", String.class);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
return object.toString();
}
@Override