Skip to content

Commit d338d3c

Browse files
run spotless:apply
1 parent 101414b commit d338d3c

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/processes/Process.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
package org.cloudfoundry.client.v3.processes;
1818

1919
import com.fasterxml.jackson.annotation.JsonProperty;
20+
import org.cloudfoundry.Nullable;
2021
import org.cloudfoundry.client.v3.Metadata;
2122
import org.cloudfoundry.client.v3.Resource;
22-
import org.cloudfoundry.Nullable;
2323

2424
/**
2525
* Base class for responses that are processes
@@ -87,6 +87,4 @@ public abstract class Process extends Resource {
8787
@JsonProperty("log_rate_limit_in_bytes_per_second")
8888
@Nullable
8989
public abstract Integer getLogRateLimitInBytesPerSecond();
90-
91-
9290
}

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/stacks/Stack.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,25 +46,24 @@ public abstract class Stack extends Resource {
4646
@Nullable
4747
public abstract Metadata getMetadata();
4848

49-
/**
49+
/**
5050
* Build RootFS Image
5151
*/
5252
@JsonProperty("build_rootfs_image")
5353
@Nullable
5454
abstract String getBuildRootfsImage();
5555

56-
/**
56+
/**
5757
* Run RootFS Image
5858
*/
5959
@JsonProperty("run_rootfs_image")
6060
@Nullable
6161
abstract String getRunRootfsImage();
6262

63-
/**
63+
/**
6464
* Whether the stack is configured to be the default stack for new applications.
6565
*/
6666
@JsonProperty("default")
6767
@Nullable
6868
abstract Boolean geDefault();
69-
7069
}

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/tasks/Task.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,4 @@ public abstract class Task extends Resource {
9696
@JsonProperty("log_rate_limit_in_bytes_per_second")
9797
@Nullable
9898
public abstract Integer getLogRateLimitInBytesPerSecond();
99-
100-
}
99+
}

cloudfoundry-client/src/main/java/org/cloudfoundry/routing/v1/tcproutes/AbstractTcpRoute.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ abstract class AbstractTcpRoute {
6767

6868
/**
6969
* Backend TLS port
70-
*/
70+
*/
7171
@JsonProperty("backend_tls_port")
7272
@Nullable
7373
abstract Integer getBackendTlsPort();
7474

75-
/**
75+
/**
7676
* Instance ID
77-
*/
77+
*/
7878
@JsonProperty("instance_id")
7979
@Nullable
8080
abstract Integer getInstanceId();

integration-test/src/test/java/org/cloudfoundry/client/v3/ProcessesTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package org.cloudfoundry.client.v3;
1818

1919
import static org.assertj.core.api.Assertions.assertThat;
20-
import static org.cloudfoundry.CloudFoundryVersion.PCF_2_9;
2120

2221
import java.io.IOException;
2322
import java.nio.file.Path;

0 commit comments

Comments
 (0)