Merge pull request #14 from haisi/master

Fix typo
This commit is contained in:
Andreas Billmann
2016-10-05 15:35:56 +02:00
committed by GitHub

View File

@@ -11,7 +11,7 @@ import java.io.File;
import java.io.IOException;
/**
* This class stores files and there state
* This class stores files and their state
* @author abi
*/
public class FileStorage<E> {
@@ -26,7 +26,7 @@ public class FileStorage<E> {
private BooleanProperty fileChanged = new SimpleBooleanProperty(true);
private ObjectProperty<File> file = new SimpleObjectProperty<>();
private ObjectProperty<E> content = new SimpleObjectProperty<E>();
private ObjectProperty<E> content = new SimpleObjectProperty<>();
public boolean isFileChanged() {
return fileChanged.get();