This commit is contained in:
2022-05-10 00:08:45 -05:00
parent 770fe65f98
commit bb8c34e0cd
74 changed files with 2025 additions and 1556 deletions

View File

@ -68,7 +68,8 @@ class WriterContext
}
return this;
} catch (IOException e)
}
catch (IOException e)
{
throw new RuntimeException(e);
}
@ -90,7 +91,8 @@ class WriterContext
empty = false;
return this;
} catch (IOException e)
}
catch (IOException e)
{
throw new RuntimeException(e);
}
@ -113,7 +115,8 @@ class WriterContext
if (isArrayOfTable)
{
write("[[").write(key).write("]]\n");
} else
}
else
{
write('[').write(key).write("]\n");
}