winery icon indicating copy to clipboard operation
winery copied to clipboard

Replace IllegalArgumentException by Objects.requireNonNull()

Open koppor opened this issue 7 years ago • 0 comments

In the code, it often reads

if (key == null) {
	throw new IllegalArgumentException();
}

This should be replaced by

Objects.requireNonNull(key);

koppor avatar Mar 27 '17 11:03 koppor