From 153caeab18da1f4f2f0eb45c8b7e6554a9aaed88 Mon Sep 17 00:00:00 2001 From: "Greg L. Turnquist" Date: Fri, 26 Jun 2020 11:05:30 -0500 Subject: [PATCH] #1313 - Polishing. --- .../org/springframework/hateoas/mediatype/problem/Problem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/hateoas/mediatype/problem/Problem.java b/src/main/java/org/springframework/hateoas/mediatype/problem/Problem.java index f9a8e406..93b7f941 100644 --- a/src/main/java/org/springframework/hateoas/mediatype/problem/Problem.java +++ b/src/main/java/org/springframework/hateoas/mediatype/problem/Problem.java @@ -151,7 +151,7 @@ public class Problem { Assert.notNull(properties, "Properties must not be null!"); - return new ExtendedProblem>(type, title, status, detail, instance, properties); + return new ExtendedProblem<>(type, title, status, detail, instance, properties); } @Nullable