From bb06ce59a9a1cde683cba8f33583d6dbe995713b Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 29 Mar 2021 15:24:18 -0700 Subject: [PATCH] Remove unnecessary @SuppressWarnings('All') annotation declarations. Format source code. --- .../data/gemfire/tests/process/ProcessUtils.java | 4 ---- .../data/gemfire/tests/process/ProcessWrapper.java | 1 - 2 files changed, 5 deletions(-) diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java index 2de4be3..157456a 100644 --- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java +++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessUtils.java @@ -13,7 +13,6 @@ * or implied. See the License for the specific language governing * permissions and limitations under the License. */ - package org.springframework.data.gemfire.tests.process; import java.io.BufferedReader; @@ -110,7 +109,6 @@ public abstract class ProcessUtils { return readPid(pidFile); } - @SuppressWarnings("all") protected static File findPidFile(File workingDirectory) { Assert.isTrue(FileSystemUtils.isDirectory(workingDirectory), @@ -129,7 +127,6 @@ public abstract class ProcessUtils { return null; } - @SuppressWarnings("all") public static int readPid(File pidFile) { Assert.isTrue(pidFile != null && pidFile.isFile(), @@ -161,7 +158,6 @@ public abstract class ProcessUtils { } } - @SuppressWarnings("all") public static void writePid(File pidFile, int pid) throws IOException { Assert.isTrue(pidFile != null && (pidFile.isFile() || pidFile.createNewFile()), diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java index 8633a7c..07f6be2 100644 --- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java +++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/ProcessWrapper.java @@ -13,7 +13,6 @@ * or implied. See the License for the specific language governing * permissions and limitations under the License. */ - package org.springframework.data.gemfire.tests.process; import java.io.BufferedReader;