Skip to content

Commit

Permalink
spotless and checkstyle; exclude not-sync file
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn committed Sep 20, 2023
1 parent edeaeb0 commit ffc1e7b
Show file tree
Hide file tree
Showing 19 changed files with 4 additions and 181 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ private BigtableResourceManager(Builder builder) throws IOException {
this.createdTables = new ArrayList<>();
this.createdAppProfiles = new ArrayList<>();
this.cdcEnabledTables = new HashSet<>();
this.clusters = new ArrayList<>();

// Check if RM was configured to use static Bigtable instance.
if (builder.useStaticInstance) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ private List<String> extractOptions(String project, String region, LaunchConfig

// add pipeline options from beamTestPipelineOptions system property to preserve the
// pipeline options already set in TestPipeline.
@Nullable String beamTestPipelineOptions =
System.getProperty(PROPERTY_BEAM_TEST_PIPELINE_OPTIONS);
@Nullable
String beamTestPipelineOptions = System.getProperty(PROPERTY_BEAM_TEST_PIPELINE_OPTIONS);
if (!Strings.isNullOrEmpty(beamTestPipelineOptions)) {
try {
additionalOptions.addAll(MAPPER.readValue(beamTestPipelineOptions, List.class));
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.neo4j;

import static com.google.common.truth.Truth.assertThat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.neo4j;

import static com.google.common.truth.Truth.assertThat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.neo4j;

import static com.google.common.truth.Truth.assertThat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk;

import com.splunk.Service;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk;

import java.time.Duration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk;

/** Custom exception for {@link SplunkResourceManager} implementations. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk;

import static org.apache.beam.it.common.utils.ResourceManagerUtils.generatePassword;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk.conditions;

import com.google.auto.value.AutoValue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk.matchers;

import static org.apache.beam.it.splunk.SplunkResourceManagerUtils.splunkEventToMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk;

import static org.apache.beam.it.splunk.matchers.SplunkAsserts.assertThatSplunkEvents;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk;

import static com.google.common.truth.Truth.assertThat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.splunk;

import static com.google.common.truth.Truth.assertThat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.testcontainers;

/** Custom exception for {@link TestContainerResourceManager} implementations. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.beam.it.testcontainers;

import java.lang.annotation.ElementType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ public int count() {
return this.backingList.size();
}

/**
* @return the internal backing list being accumulated.
*/
/** @return the internal backing list being accumulated. */
public List<T> getBackingList() {
return this.backingList;
}
Expand Down

0 comments on commit ffc1e7b

Please sign in to comment.