提交 cb419829 编写于 作者: O Olivier Lamy

Merge pull request #613 from cjo9900/EnvVars_docs

Document when EnvVars.get() function was added.
......@@ -157,6 +157,10 @@ public class EnvVars extends TreeMap<String,String> {
}
}
/**
* Convenience message
* @since 1.485
**/
public String get(String key, String defaultValue) {
String v = get(key);
if (v==null) v=defaultValue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册