Make sure DatabaseEntry name and icon fields always have a value

This commit is contained in:
Alexander Bakker 2017-12-03 21:35:15 +01:00
parent 107ca18187
commit df5a815e57
2 changed files with 10 additions and 2 deletions

View file

@ -9,8 +9,8 @@ import me.impy.aegis.crypto.KeyInfo;
public class DatabaseEntry implements Serializable {
public int _id;
public String _name;
public String _icon;
public String _name = "";
public String _icon = "";
public KeyInfo _info;
public int _order;

View file

@ -0,0 +1,8 @@
package me.impy.aegis.util;
/**
* Created by alex on 12/3/17.
*/
public class ByteInputStream {
}