Skip to content

Commit 3b5fadb

Browse files
author
albinsabu2023
committed
fixed lint
1 parent 49fbad2 commit 3b5fadb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/datastructures/lists/CreateAndDetectLoop.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.thealgorithms.datastructures.lists;
22

3-
public final class CreateAndDetectLoop {
3+
public final class CreateAndDetectLoop {
44

55
// Node class representing a single node in the linked list
66
private CreateAndDetectLoop() {
77
throw new UnsupportedOperationException("Utility class");
88
}
9-
static final class Node {
9+
static final class Node {
1010
int data;
1111
Node next;
1212

0 commit comments

Comments
 (0)