diff options
author | Keuin <[email protected]> | 2021-01-12 12:51:23 +0800 |
---|---|---|
committer | keuin <[email protected]> | 2021-01-12 12:51:23 +0800 |
commit | afd26cdd12fef4bd2aafa2ac8d708e18d277a2fe (patch) | |
tree | e389ccbe9fb48e03de25b38d3ef7d5c273c5ec97 /src/main/java/com/keuin/kbackupfabric/util/backup/inc/ObjectCollectionManager.java | |
parent | 8b05c48d76bbb05c2b440e57df1d9b3323edc598 (diff) |
Implement object collection(not tested) and sha256(tested)
Diffstat (limited to 'src/main/java/com/keuin/kbackupfabric/util/backup/inc/ObjectCollectionManager.java')
-rw-r--r-- | src/main/java/com/keuin/kbackupfabric/util/backup/inc/ObjectCollectionManager.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main/java/com/keuin/kbackupfabric/util/backup/inc/ObjectCollectionManager.java b/src/main/java/com/keuin/kbackupfabric/util/backup/inc/ObjectCollectionManager.java deleted file mode 100644 index 9560261..0000000 --- a/src/main/java/com/keuin/kbackupfabric/util/backup/inc/ObjectCollectionManager.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.keuin.kbackupfabric.util.backup.inc; - -/** - * Incremental backup is implemented as git-like file collection. - * Files are called `objects`, the collection contains all files distinguished by their - * identifiers. Usually, identifier is the combination of hash and other short information (such as size and another hash). - * The identifier should use hashes that are strong enough, to prevent possible collisions. - */ -public class ObjectCollectionManager { - -} |