Skip to content

Commit

Permalink
Removes VisibleForTesting and moves comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoandremartins committed Jul 14, 2016
1 parent d19a956 commit b1ef731
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import com.google.cloud.tools.appengine.cloudsdk.process.ProcessExitListener;
import com.google.cloud.tools.appengine.cloudsdk.process.ProcessOutputLineListener;
import com.google.cloud.tools.appengine.cloudsdk.process.ProcessStartListener;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Joiner;
import com.google.common.collect.Maps;

Expand Down Expand Up @@ -175,7 +174,7 @@ private void logCommand(List<String> command) {
logger.info("submitting command: " + WHITESPACE_JOINER.join(command));
}

@VisibleForTesting public Path getSdkPath() {
public Path getSdkPath() {
return sdkPath;
}

Expand Down Expand Up @@ -250,8 +249,7 @@ public static class Builder {
private int runDevAppServerWaitSeconds;

/**
* The home directory of Google Cloud SDK. If not set, will attempt to look for the SDK in known
* install locations.
* The home directory of Google Cloud SDK.
*/
public Builder sdkPath(Path sdkPathFile) {
if (sdkPathFile != null) {
Expand Down Expand Up @@ -350,6 +348,9 @@ public Builder runDevAppServerWait(int runDevAppServerWaitSeconds) {

/**
* Create a new instance of {@link CloudSdk}.
*
* If {@code sdKPath} is not set, this method will attempt to look for the SDK in known install
* locations.
*/
public CloudSdk build() {

Expand Down

0 comments on commit b1ef731

Please sign in to comment.