Fix findbug and checkstyle issues
[bgpcep.git] / bgp / path-selection-mode / src / main / java / org / opendaylight / protocol / bgp / mode / impl / add / all / paths / AbstractAllPathsRouteEntry.java
index bba334b24616a7b67082ea73e73e7271e8a1fec4..775f7f563523f3bfa66e58e061a7a3a10ea56bdb 100644 (file)
@@ -38,7 +38,8 @@ abstract class AbstractAllPathsRouteEntry extends AddPathAbstractRouteEntry {
                 requireNonNull(key.getRouteId(), "Router ID may not be null");
                 if (attributes != null) {
                     final BestPathState state = new BestPathStateImpl(attributes);
-                    final AddPathBestPath bestPath = new AddPathBestPath(state, key, offset, this.offsets.getValue(this.pathsId, offset));
+                    final AddPathBestPath bestPath = new AddPathBestPath(state, key, offset,
+                            this.offsets.getValue(this.pathsId, offset));
                     newBestPathList.add(bestPath);
                 }
             }