Skip to content

Commit

Permalink
Addressing more stylecheck errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anuchandy committed May 20, 2016
1 parent 4056423 commit f35826e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public interface VirtualMachineImages extends
*
* @param region The region
* @return The list of VM image publishers
* @throws CloudException
* @throws IOException
* @throws CloudException Thrown for an invalid response from the service.
* @throws IOException Thrown for IO exception.
*/
List<VirtualMachineImage.Publisher> listPublishers(final Region region) throws CloudException, IOException;
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ public interface VirtualMachines extends
*
* @param region The region upon which virtual-machine-sizes is queried.
* @return the List&lt;VirtualMachineSize&gt; if successful.
* @throws CloudException
* @throws IOException
* @throws CloudException Thrown for an invalid response from the service.
* @throws IOException Thrown for IO exception.
*/
PagedList<VirtualMachineSize> listSizes(String region) throws CloudException, IOException;

/**
* A type representing Azure virtual machine under a resource gorup.
*/
interface InGroup extends
SupportsListing<VirtualMachine>,
SupportsCreating<VirtualMachine.DefinitionBlank>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
import java.util.List;
import java.util.UUID;

/**
* The type representing Azure virtual machine.
*/
class VirtualMachineImpl
extends GroupableResourceImpl<VirtualMachine, VirtualMachineInner, VirtualMachineImpl>
implements
Expand Down Expand Up @@ -507,6 +510,6 @@ private DataDisk currentDataDisk() {
}

private String blobUrl(String storageAccountName, String containerName, String blobName) {
return storageAccountName + ".blob.core.windows.net" + "/" + containerName + "/" + blobName ;
return storageAccountName + ".blob.core.windows.net" + "/" + containerName + "/" + blobName;
}
}

0 comments on commit f35826e

Please sign in to comment.