From 5794989dae995f191c5d466224c1dc2fcfcd9a27 Mon Sep 17 00:00:00 2001 From: Seshu Thanneeru Date: Thu, 20 Jan 2022 19:09:27 +0530 Subject: [PATCH] reformatted long line continuation --- .../baeldung/map/identity/IdentityHashMapDemonstrator.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/java-collections-maps-3/src/main/java/com/baeldung/map/identity/IdentityHashMapDemonstrator.java b/java-collections-maps-3/src/main/java/com/baeldung/map/identity/IdentityHashMapDemonstrator.java index faba9f60f8..3cbe09b93f 100644 --- a/java-collections-maps-3/src/main/java/com/baeldung/map/identity/IdentityHashMapDemonstrator.java +++ b/java-collections-maps-3/src/main/java/com/baeldung/map/identity/IdentityHashMapDemonstrator.java @@ -81,10 +81,7 @@ public class IdentityHashMapDemonstrator { @Override public String toString() { - return "Book{" + - "title='" + title + '\'' + - ", year=" + year + - '}'; + return "Book{title='" + title + "', year=" + year + "}"; } }