Skip to content
Snippets Groups Projects
Commit 33a1c45c authored by Mamadu-lamarana Bah's avatar Mamadu-lamarana Bah :speech_balloon:
Browse files

utilisation de isEmpty() de list au lieu de ... == 0

parent 5190d431
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,7 @@ public final class JsonObject extends JsonElement {
* @since 2.10.1
*/
public boolean isEmpty() {
return members.size() == 0;
return members.isEmpty();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment