mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2025-09-02 11:36:59 +00:00
@ -60,8 +60,10 @@ public abstract class AbstractInjectConfig {
|
|||||||
if (value == null) {
|
if (value == null) {
|
||||||
if (def != null) {
|
if (def != null) {
|
||||||
value = def.value();
|
value = def.value();
|
||||||
} else if (field.getAnnotation(Nullable.class) == null) {
|
} else {
|
||||||
Log.warning(String.format(PATH_NOT_FOUND, path));
|
if (field.getAnnotation(Nullable.class) == null) {
|
||||||
|
Log.warning(String.format(PATH_NOT_FOUND, path));
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user