We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f7defe commit e569295Copy full SHA for e569295
src/main/java/org/computate/frFR/java/ConfigSite.java
@@ -92,7 +92,7 @@ public class ConfigSite {
92
93
public static String lookup(String type, String arg1) {
94
if("env".equals(type))
95
- return System.getenv(arg1);
+ return Optional.ofNullable(System.getenv(arg1)).orElse("");
96
return null;
97
}
98
0 commit comments