mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
@@ -31,7 +31,8 @@ public class LOGOPrinter {
|
||||
}
|
||||
|
||||
private static String getVersion(){
|
||||
Package pkg = LOGOPrinter.class.getPackage();
|
||||
return (pkg != null) ? pkg.getImplementationVersion() : "DEV";
|
||||
return Optional.ofNullable(LOGOPrinter.class.getPackage())
|
||||
.map(Package::getImplementationVersion)
|
||||
.orElse("DEV");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user