Skip to content

Commit

Permalink
Vault doesn't need to be Serializable in order for ObjectMapper to wo…
Browse files Browse the repository at this point in the history
…rk properly
  • Loading branch information
overheadhunter committed Mar 4, 2016
1 parent 9117b6b commit 67ba7ca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions main/ui/src/main/java/org/cryptomator/ui/model/Vault.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -51,9 +50,7 @@
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";

Expand Down

0 comments on commit 67ba7ca

Please sign in to comment.