Skip to content

Commit

Permalink
Update Specs.java
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed May 2, 2024
1 parent 40a6bf2 commit d51f7f0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import java.util.List;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.Predicate;
import java.util.stream.Stream;

public record Specs<T>(T t, ConfigType type, String fileName) {
public record Session(Type type, int layer) {
Expand All @@ -37,7 +36,7 @@ public Session nested() {
public String toString() {
return layer == 0
? type().name()
: String.format("%s -> NESTED BY %d", type().name(), layer);
: String.format("%s -> Nested by %d", type().name(), layer);
}
}

Expand Down

0 comments on commit d51f7f0

Please sign in to comment.