Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions modules/tlc2/overrides/CSV.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

public class CSV {

@TLAPlusOperator(identifier = "CSVWriteRecord", module = "CSV", minLevel = 1, warn = false)
@TLAPlusOperator(identifier = "CSVWriteRecord", module = "CSV", warn = false)
public static Value writeRecord(final Value parameter, final StringValue delim, final BoolValue headers,
final StringValue absolutePath) throws IOException {

Expand Down Expand Up @@ -80,7 +80,7 @@ public static Value writeRecord(final Value parameter, final StringValue delim,
return BoolValue.ValTrue;
}

@TLAPlusOperator(identifier = "CSVWrite", module = "CSV", minLevel = 1, warn = false)
@TLAPlusOperator(identifier = "CSVWrite", module = "CSV", warn = false)
public static Value write(final StringValue template, final Value parameter, final StringValue absolutePath)
throws IOException {
final TupleValue tv = (TupleValue) parameter.toTuple();
Expand All @@ -97,7 +97,7 @@ public static Value write(final StringValue template, final Value parameter, fin
return BoolValue.ValTrue;
}

@TLAPlusOperator(identifier = "CSVRead", module = "CSV", minLevel = 1, warn = false)
@TLAPlusOperator(identifier = "CSVRead", module = "CSV", warn = false)
public static Value read(final Value columns, final StringValue delim, final StringValue absolutePath)
throws IOException {

Expand Down Expand Up @@ -127,7 +127,7 @@ public static Value read(final Value columns, final StringValue delim, final Str
return new TupleValue(records);
}

@TLAPlusOperator(identifier = "CSVRecords", module = "CSV", minLevel = 1, warn = false)
@TLAPlusOperator(identifier = "CSVRecords", module = "CSV", warn = false)
public static Value records(final StringValue absolutePath)
throws IOException {
final Path path = Paths.get(absolutePath.val.toString());
Expand Down
Loading