Fix typo in log statement

This commit is contained in:
0xboobface 2018-10-29 13:51:08 +01:00
parent a841457a90
commit 64beb44316
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class ModelJsonAdapter extends JsonAdapter<Model> {
}
return model;
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException e) {
throw new IOException("Couldn't instantiate mode class [" + type + "]", e);
throw new IOException("Couldn't instantiate model class [" + type + "]", e);
}
}