mjson icon indicating copy to clipboard operation
mjson copied to clipboard

bug in object delAt

Open bolerio opened this issue 6 years ago • 0 comments

		public Json delAt(String property) 
		{
			Json el = object.remove(property);
			removeParent(el, this);
			return this;
		}

when there is no value for the property being deleted, the removeParent call leads to an NPE

bolerio avatar Jan 02 '20 15:01 bolerio