Skip to content

Commit 10a2601

Browse files
committed
Formatting
1 parent da7fc9d commit 10a2601

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/openrewrite/java/migrate/joda/JodaTimeScanner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ private Optional<Cursor> findArgumentExprCursor() {
247247
Cursor cursor = getCursor();
248248
while (cursor.getValue() instanceof Expression && isJodaExpr(cursor.getValue())) {
249249
Cursor parentCursor = cursor.getParentTreeCursor();
250-
if (parentCursor.getValue() instanceof MethodCall
251-
&& ((MethodCall) parentCursor.getValue()).getArguments().contains(cursor.getValue())) {
250+
if (parentCursor.getValue() instanceof MethodCall &&
251+
((MethodCall) parentCursor.getValue()).getArguments().contains(cursor.getValue())) {
252252
return Optional.of(cursor);
253253
}
254254
cursor = parentCursor;

0 commit comments

Comments
 (0)