mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Add constructors
This commit is contained in:
@@ -89,7 +89,6 @@ public class PwEntryV3 extends PwEntry {
|
||||
private String binaryDesc;
|
||||
private byte[] binaryData;
|
||||
|
||||
|
||||
public PwEntryV3() {
|
||||
super();
|
||||
}
|
||||
|
||||
@@ -61,6 +61,7 @@ public class PwEntryV4 extends PwEntry implements ITimeLogger {
|
||||
private String tags = "";
|
||||
|
||||
public PwEntryV4() {
|
||||
super();
|
||||
}
|
||||
|
||||
public PwEntryV4(PwGroupV4 p) {
|
||||
|
||||
@@ -36,7 +36,11 @@ public class PwGroupV3 extends PwGroup {
|
||||
|
||||
/** Used by KeePass internally, don't use */
|
||||
private int flags;
|
||||
|
||||
|
||||
public PwGroupV3() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
public PwGroup getParent() {
|
||||
return parent;
|
||||
|
||||
@@ -43,7 +43,9 @@ public class PwGroupV4 extends PwGroup implements ITimeLogger {
|
||||
private Boolean enableSearching = null;
|
||||
private UUID lastTopVisibleEntry = PwDatabase.UUID_ZERO;
|
||||
|
||||
public PwGroupV4() {}
|
||||
public PwGroupV4() {
|
||||
super();
|
||||
}
|
||||
|
||||
public PwGroupV4(String name, PwIconStandard icon) {
|
||||
super.construct();
|
||||
|
||||
Reference in New Issue
Block a user