File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/main/java/com/igormaznitsa/prologparser Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 44
44
import com .igormaznitsa .prologparser .tokenizer .Tokenizer ;
45
45
import com .igormaznitsa .prologparser .tokenizer .TokenizerResult ;
46
46
import com .igormaznitsa .prologparser .utils .Koi7CharOpMap ;
47
- import java .io .Closeable ;
48
47
import java .io .IOException ;
49
48
import java .io .Reader ;
50
49
import java .util .ArrayList ;
60
59
* Abstract base Prolog parser.
61
60
*/
62
61
@ SuppressWarnings ({"GrazieInspection" , "unused" })
63
- public abstract class PrologParser implements Iterable <PrologTerm >, Closeable {
62
+ public abstract class PrologParser implements Iterable <PrologTerm >, AutoCloseable {
64
63
65
64
public static final PrologTerm [] EMPTY_TERM_ARRAY = new PrologTerm [0 ];
66
65
protected static final Koi7CharOpMap META_OP_MAP ;
You can’t perform that action at this time.
0 commit comments