if (getCompareConfiguration().isLeftEditable() && isLeftDirty()) {
byte[] bytes = getContents(true);
if (rightEmpty && bytes != null && bytes.length == 0)
bytes = null;
setLeftDirty(false);
content.saveLeftContent(input, bytes);
}
if (getCompareConfiguration().isRightEditable() && isRightDirty()) {
byte[] bytes = getContents(false);
if (leftEmpty && bytes != null && bytes.length == 0)