Remove unused code

This commit is contained in:
moandji.ezana 2015-07-01 13:01:16 +02:00
parent fa591a0f0c
commit 7d5e429e12
2 changed files with 1 additions and 5 deletions

View file

@ -149,8 +149,4 @@ public class TomlWriter {
WriterContext context = new WriterContext(indentationPolicy, datePolicy, target);
WRITERS.write(from, context);
}
WriterIndentationPolicy getIndentationPolicy() {
return indentationPolicy;
}
}

View file

@ -48,7 +48,7 @@ class WriterContext {
WriterContext write(String s) {
try {
output.write(s);
if (s != null && !s.isEmpty()) {
if (empty && !s.isEmpty()) {
empty = false;
}