Skip to content

Commit e9e53e3

Browse files
authored
style: fix lint issues (GoogleCloudPlatform#135)
Signed-off-by: Grant Timmerman <[email protected]>
1 parent faff79d commit e9e53e3

File tree

1 file changed

+3
-3
lines changed
  • invoker/function-maven-plugin/src/main/java/com/google/cloud/functions/plugin

1 file changed

+3
-3
lines changed

Diff for: invoker/function-maven-plugin/src/main/java/com/google/cloud/functions/plugin/DeployFunction.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ public class DeployFunction extends CloudSdkMojo {
201201
@Parameter(alias = "deploy.envvarsfile", property = "function.deploy.envvarsfile")
202202
String envVarsFile;
203203
/**
204-
* List of key-value pairs to set as build environment variables. All existing environment variables
205-
* will be removed first.
204+
* List of key-value pairs to set as build environment variables. All existing environment
205+
* variables will be removed first.
206206
*/
207207
@Parameter(alias = "deploy.setbuildenvvars", property = "function.deploy.setbuildenvvars")
208208
Map<String, String> buildEnvironmentVariables;
@@ -220,7 +220,7 @@ boolean hasEnvVariables() {
220220
boolean hasBuildEnvVariables() {
221221
return (this.buildEnvironmentVariables != null && !this.buildEnvironmentVariables.isEmpty());
222222
}
223-
223+
224224
// Select a downloaded Cloud SDK or a user defined Cloud SDK version.
225225
static Function<String, ManagedCloudSdk> newManagedSdkFactory() {
226226
return version -> {

0 commit comments

Comments
 (0)