Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove classes with no references #1453

Merged
merged 1 commit into from
May 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions api/src/com/cloud/agent/api/storage/CreateVolumeOVAAnswer.java

This file was deleted.

26 changes: 0 additions & 26 deletions api/src/com/cloud/agent/api/storage/PrepareOVAPackingAnswer.java

This file was deleted.

26 changes: 0 additions & 26 deletions api/src/com/cloud/exception/MissingParameterValueException.java

This file was deleted.

This file was deleted.

76 changes: 0 additions & 76 deletions api/src/org/apache/cloudstack/api/response/NicDetailResponse.java

This file was deleted.

34 changes: 0 additions & 34 deletions api/src/org/apache/cloudstack/api/response/StatusResponse.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@
import java.util.Map;
import java.util.Set;

import com.google.gson.annotations.SerializedName;

import org.apache.cloudstack.api.ApiConstants;
import org.apache.cloudstack.api.BaseResponseWithTagInformation;
import org.apache.cloudstack.api.EntityReference;

import com.cloud.serializer.Param;
import com.cloud.storage.Storage.ImageFormat;
import com.cloud.template.VirtualMachineTemplate;
import com.google.gson.annotations.SerializedName;

@EntityReference(value = VirtualMachineTemplate.class)
@SuppressWarnings("unused")
Expand Down Expand Up @@ -170,11 +169,6 @@ public class TemplateResponse extends BaseResponseWithTagInformation implements
@Param(description = "additional key/value details tied with template")
private Map details;

// To avoid breaking backwards compatibility, we still treat a template at different zones as different templates, so not embedding
// template_zone information in this TemplateZoneResponse set.
// @SerializedName("zones") @Param(description="list of zones associated with tempate", responseObject = TemplateZoneResponse.class)
// private Set<TemplateZoneResponse> zones;

@SerializedName(ApiConstants.SSHKEY_ENABLED)
@Param(description = "true if template is sshkey enabled, false otherwise")
private Boolean sshKeyEnabled;
Expand All @@ -184,7 +178,6 @@ public class TemplateResponse extends BaseResponseWithTagInformation implements
private Boolean isDynamicallyScalable;

public TemplateResponse() {
// zones = new LinkedHashSet<TemplateZoneResponse>();
tags = new LinkedHashSet<ResourceTagResponse>();
}

Expand Down
Loading