Inline isFriendsWith(user)
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Thu, 24 Nov 2016 23:18:35 +0000 (00:18 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Thu, 24 Nov 2016 23:18:35 +0000 (00:18 +0100)
TDD/src/main/java/org/craftedsw/tripservicekata/trip/TripService.java

index 4eddb9e..57d1f42 100644 (file)
@@ -16,7 +16,6 @@ public class TripService {
                // User loggedUser = UserSession.getInstance().getLoggedUser();\r
                User loggedInUser = getLoggedInUser();\r
                if (loggedInUser != null) {\r
-                       boolean isFriend = user.isFriendsWith(loggedInUser);            \r
                        // The deepest branch. For refactoring legacy code we must begin from the\r
                        // deepest branch. This is just the opposite for creating the unit test\r
                        // for our legacy code.\r
@@ -26,7 +25,7 @@ public class TripService {
                        // to shortest branch. Modifications in the legacy code may be hand made.\r
                        // In this case we can not do anything with this code (this is the deepest branch)\r
                        // so we will have to start with the for loop (which is the second deepest branch)\r
-                       if (isFriend) {\r
+                       if (user.isFriendsWith(loggedInUser)) {\r
                                tripList = tripsBy(user);\r
                        }\r
                        return tripList;\r