Fixed comments from r486.

This commit is contained in:
Joel Leitch 2009-10-09 00:36:22 +00:00
parent 2bddd575b3
commit 6d60a7db1d

View File

@ -54,7 +54,6 @@ public final class JsonObject extends JsonElement {
*/
public void add(String property, JsonElement value) {
Preconditions.checkArgument(property != null && !"".equals(property.trim()));
Preconditions.checkNotNull(property);
if (value == null) {
value = JsonNull.createJsonNull();