提交 4ecb8611 编写于 作者: S Stephane Nicoll

Merge pull request #811 from izeye/patch-2

* patch-2:
  Fix typo
......@@ -50,8 +50,8 @@ abstract class ReadOnlySystemAttributesMap implements Map<String, String> {
public String get(Object key) {
if (!(key instanceof String)) {
throw new IllegalArgumentException(
"Key of type [" + (key != null ? key.getClass().getName() : "null") +
"] must be an instance of java.lang.String.");
"Type of key [" + (key != null ? key.getClass().getName() : "null") +
"] must be java.lang.String.");
}
return this.getSystemAttribute((String) key);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册