diff options
author | Keuin <[email protected]> | 2021-01-23 15:55:39 +0800 |
---|---|---|
committer | keuin <[email protected]> | 2021-01-23 15:55:39 +0800 |
commit | 011ac22afbffe80de478451f812c0853e8153af3 (patch) | |
tree | 51ef024e552f4a2146be445a3a5e70fce566516f /src/main/java/com/keuin/kbackupfabric/util/backup/incremental/ObjectCollection.java | |
parent | 483d91a54912f2c87d6d686184f66a8d091ef9b7 (diff) |
I decided to change the version to `1.5.0` in order to stress the non forward-compatible for 1.4.6 created backups in older versions (<=1.4.5).
Diffstat (limited to 'src/main/java/com/keuin/kbackupfabric/util/backup/incremental/ObjectCollection.java')
-rw-r--r-- | src/main/java/com/keuin/kbackupfabric/util/backup/incremental/ObjectCollection.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/com/keuin/kbackupfabric/util/backup/incremental/ObjectCollection.java b/src/main/java/com/keuin/kbackupfabric/util/backup/incremental/ObjectCollection.java index d36ff59..0cd36a0 100644 --- a/src/main/java/com/keuin/kbackupfabric/util/backup/incremental/ObjectCollection.java +++ b/src/main/java/com/keuin/kbackupfabric/util/backup/incremental/ObjectCollection.java @@ -7,6 +7,8 @@ import java.util.*; * This class must be in package `com.keuin.kbackupfabric.util.backup.incremental.ObjectCollection`, * or it will not be compatible with old backups. * It remains only to keep a backward compatibility, and should be converted to `ObjectCollection2` as soon as possible. + * Thus, this class is marked as `Depreciated`. However, it should not be removed since it is needed to read legacy + * backups correctly. But new codes should not use this class any more. */ @Deprecated public class ObjectCollection implements Serializable { |