Checkpoint

This commit is contained in:
Filip Izydorczyk
2020-07-28 18:04:38 +02:00
parent 7670401d6e
commit 821f1ffa75
6 changed files with 64 additions and 4 deletions

View File

@ -31,4 +31,9 @@ public class FileData {
this.keys = keys;
}
public int getIndexOf(String key) {
int index = this.keys.get(key);
return index;
}
}