> +
> +
> bind(ImplicitLocationSupplier.class).to(OnlyLocationOrFirstZone.class).in(Singleton.class);
> +
> + bind(new TypeLiteral<ComputeServiceAdapter<ServerInDataCenter,
> Hardware, Provisionable, DataCenter>>() {
> + }).to(ProfitBricksComputeServiceAdapter.class);
> +
> + bind(new
> TypeLiteral<Function<org.apache.jclouds.profitbricks.rest.domain.Location,
> Location>>() {
> + }).to(LocationToLocation.class);
> +
> + bind(new TypeLiteral<Function<DataCenter, Location>>() {
> + }).to(DataCenterToLocation.class);
> +
> + bind(new TypeLiteral<Function<ServerInDataCenter, NodeMetadata>>() {
> + }).to(ServerInDataCenterToNodeMetadata.class);
> + bind(new TypeLiteral<Function<Server, NodeMetadata>>() {
> + }).to(ServerToNodeMetadata.class);
Is this function still used? If not, remove the binding and the function class.
---
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-labs/pull/292/files/9251ab7434bcafb1dcbec5a718acc3c24517c94d#r73312144