andrewgaul commented on this pull request.
> + */
+ private void removeObjectsWithPrefix(String containerAndPrefix) {
+ String[] parts = splitContainerAndKey(containerAndPrefix);
+
+ String container = parts[0];
+ String prefix = parts[1];
+
+ removeObjectsWithPrefix(container, prefix);
+ }
+
+
+ /**
+ * @param containerAndKey
+ * @return array of size 2 with container and objectPrefix
+ */
+ private String[] splitContainerAndKey(String containerAndKey) {
Add `static`.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1090#pullrequestreview-35522755