mirror of https://github.com/apache/jclouds.git
Remove unused copy method
Also make second copy method private access.
This commit is contained in:
parent
5033b98252
commit
d13e8aec4a
|
@ -246,7 +246,7 @@ public class FilesystemAsyncBlobStore extends BaseAsyncBlobStore {
|
||||||
storageStrategy.getAllContainerNames()));
|
storageStrategy.getAllContainerNames()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static MutableBlobMetadata copy(MutableBlobMetadata in) {
|
private static MutableBlobMetadata copy(MutableBlobMetadata in) {
|
||||||
ByteArrayOutputStream bout = new ByteArrayOutputStream();
|
ByteArrayOutputStream bout = new ByteArrayOutputStream();
|
||||||
ObjectOutput os;
|
ObjectOutput os;
|
||||||
try {
|
try {
|
||||||
|
@ -271,12 +271,6 @@ public class FilesystemAsyncBlobStore extends BaseAsyncBlobStore {
|
||||||
metadata.setUserMetadata(lowerCaseUserMetadata);
|
metadata.setUserMetadata(lowerCaseUserMetadata);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static MutableBlobMetadata copy(MutableBlobMetadata in, String newKey) {
|
|
||||||
MutableBlobMetadata newMd = copy(in);
|
|
||||||
newMd.setName(newKey);
|
|
||||||
return newMd;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -247,7 +247,7 @@ public class TransientAsyncBlobStore extends BaseAsyncBlobStore {
|
||||||
storageStrategy.getAllContainerNames()));
|
storageStrategy.getAllContainerNames()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static MutableBlobMetadata copy(MutableBlobMetadata in) {
|
private static MutableBlobMetadata copy(MutableBlobMetadata in) {
|
||||||
ByteArrayOutputStream bout = new ByteArrayOutputStream();
|
ByteArrayOutputStream bout = new ByteArrayOutputStream();
|
||||||
ObjectOutput os;
|
ObjectOutput os;
|
||||||
try {
|
try {
|
||||||
|
@ -271,12 +271,6 @@ public class TransientAsyncBlobStore extends BaseAsyncBlobStore {
|
||||||
metadata.setUserMetadata(lowerCaseUserMetadata);
|
metadata.setUserMetadata(lowerCaseUserMetadata);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static MutableBlobMetadata copy(MutableBlobMetadata in, String newKey) {
|
|
||||||
MutableBlobMetadata newMd = copy(in);
|
|
||||||
newMd.setName(newKey);
|
|
||||||
return newMd;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue