Skip to content

Commit

Permalink
[Github microsoft#47] [Intellij] Clicking un-publish button is throwi…
Browse files Browse the repository at this point in the history
…ng Error message "Argument for @NotNull parameter ......"
  • Loading branch information
lenala committed Jun 9, 2016
1 parent 1f86658 commit f5efde8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,9 @@ public static List<CloudService> getHostedServices(PublishData currentPublishDat
return currentPublishData.getServicesPerSubscription().get(subbscriptionId);
}

public static CloudService getHostedServiceWithDeployments(CloudService cloudService, PublishData currentPublishData)
public static CloudService getHostedServiceWithDeployments(CloudService cloudService, Object projectObject)
throws Exception, InvalidThumbprintException {
return AzureManagerImpl.getManager().getCloudServiceDetailed(cloudService);
return AzureManagerImpl.getManager(projectObject).getCloudServiceDetailed(cloudService);
}

public static boolean empty(PublishData data) {
Expand Down

0 comments on commit f5efde8

Please sign in to comment.