1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

investigate XML.toString() behavior with null JSONObject values

This commit is contained in:
stleary 2015-07-17 21:58:42 -05:00
parent 6cca292020
commit 0056b1af94

View file

@ -1545,13 +1545,6 @@ public class JSONObjectTest {
String sNull = XML.toString(jsonObjectNull); String sNull = XML.toString(jsonObjectNull);
assertTrue("null should emit an empty string", "".equals(sNull)); assertTrue("null should emit an empty string", "".equals(sNull));
} }
/**
*
*/
private void nullOperations(Object value) {
}
} }