> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.jclouds.atmos.fallbacks;
> +
> +import static com.google.common.base.Throwables.propagate;
> +import static com.google.common.util.concurrent.Futures.immediateFuture;
> +import static org.jclouds.util.Throwables2.getFirstThrowableOfType;
> +
> +import org.jclouds.Fallback;
> +import org.jclouds.atmos.AtmosResponseException;
> +import org.jclouds.http.HttpUtils;
> +
> +import com.google.common.util.concurrent.ListenableFuture;
> +
> +public final class TrueOn404FalseOnPathNotEmpty implements Fallback<Boolean>
> {
Just a question: is this supposed to be an either/or decision? If so, use an
`else` in the logic? Otherwise (since the path check comes first) call this
`FalseOnPathNotEmptyTrueOn404`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/451/files#r15378720