move this back

This commit is contained in:
Taah
2022-05-04 05:19:34 -07:00
parent de13860741
commit a24aa6a962
28 changed files with 142 additions and 142 deletions

View File

@ -1,19 +0,0 @@
package dev.plex.toml;
import java.util.concurrent.atomic.AtomicInteger;
public class Context {
final dev.plex.toml.Identifier identifier;
final AtomicInteger line;
final Results.Errors errors;
public Context(dev.plex.toml.Identifier identifier, AtomicInteger line, Results.Errors errors) {
this.identifier = identifier;
this.line = line;
this.errors = errors;
}
public Context with(dev.plex.toml.Identifier identifier) {
return new Context(identifier, line, errors);
}
}