From 67ba7cac40727b1609facc4dcb9750f978cc8de9 Mon Sep 17 00:00:00 2001 From: Sebastian Stenzel Date: Fri, 4 Mar 2016 21:27:46 +0100 Subject: [PATCH] Vault doesn't need to be Serializable in order for ObjectMapper to work properly --- main/ui/src/main/java/org/cryptomator/ui/model/Vault.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java b/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java index c83a6bd56..a58741df1 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java +++ b/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java @@ -9,7 +9,6 @@ package org.cryptomator.ui.model; import java.io.IOException; -import java.io.Serializable; import java.io.UncheckedIOException; import java.nio.file.FileAlreadyExistsException; import java.nio.file.Path; @@ -51,9 +50,7 @@ import javafx.beans.property.SimpleBooleanProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; -public class Vault implements Serializable, CryptoFileSystemDelegate { - - private static final long serialVersionUID = 3754487289683599469L; +public class Vault implements CryptoFileSystemDelegate { public static final String VAULT_FILE_EXTENSION = ".cryptomator";