mirror of
https://github.com/zaaarf/lillero-mapping-writer.git
synced 2024-11-14 05:19:23 +01:00
chore: throw exception if nto enough args are passed
This commit is contained in:
parent
c75cd1f4d6
commit
b8cbf60f66
1 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,8 @@ public class TinyV2Writer implements IWriter {
|
|||
|
||||
@Override
|
||||
public void write(Mapper mapper, PrintWriter writer, String... args) {
|
||||
if(args.length < 2)
|
||||
throw new RuntimeException("Please provide the namespaces for the tiny format after the -a flag!");
|
||||
writer.printf("tiny\t2\t0\t%s\t%s", args[0], args[1]);
|
||||
mapper.getRawMappings().forEach((name, data) -> {
|
||||
writer.printf("c\t%s\t%s\n", name, data.nameMapped);
|
||||
|
|
Loading…
Reference in a new issue