mirror of
https://github.com/apache/jclouds.git
synced 2025-02-16 15:08:28 +00:00
Correct typo
This commit is contained in:
parent
874884c61b
commit
40bb12d410
@ -240,14 +240,14 @@ public class FilesystemStorageStrategyImpl implements FilesystemStorageStrategy
|
|||||||
}
|
}
|
||||||
|
|
||||||
File containerFile = openFolder(container);
|
File containerFile = openFolder(container);
|
||||||
final int containerPathLenght = containerFile.getAbsolutePath().length() + 1;
|
final int containerPathLength = containerFile.getAbsolutePath().length() + 1;
|
||||||
Set<String> blobNames = new HashSet<String>() {
|
Set<String> blobNames = new HashSet<String>() {
|
||||||
|
|
||||||
private static final long serialVersionUID = 3152191346558570795L;
|
private static final long serialVersionUID = 3152191346558570795L;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean add(String e) {
|
public boolean add(String e) {
|
||||||
return super.add(e.substring(containerPathLenght));
|
return super.add(e.substring(containerPathLength));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
populateBlobKeysInContainer(containerFile, blobNames);
|
populateBlobKeysInContainer(containerFile, blobNames);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user