File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
java-compiler-testing/src/main/java/io/github/ascopes/jct/utils Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1515 */
1616package io .github .ascopes .jct .utils ;
1717
18+ import static java .util .Objects .requireNonNull ;
19+
1820import java .io .File ;
1921import java .lang .reflect .Array ;
2022import java .net .URI ;
2527import java .util .List ;
2628import java .util .Locale ;
2729import java .util .Map ;
28- import java .util .Objects ;
2930import java .util .UUID ;
3031import java .util .regex .Pattern ;
3132import org .apiguardian .api .API ;
@@ -70,7 +71,7 @@ public final class ToStringBuilder {
7071 * @param owner the object that is being converted to a string.
7172 */
7273 public ToStringBuilder (Object owner ) {
73- this .owner = Objects . requireNonNull (owner , "owner must not be null" );
74+ this .owner = requireNonNull (owner , "owner must not be null" );
7475 attributes = new LinkedHashMap <>();
7576 }
7677
You can’t perform that action at this time.
0 commit comments