Remove unnecessary @SuppressWarnings('All') annotation declarations.

Format source code.
This commit is contained in:
John Blum
2021-03-29 15:24:18 -07:00
parent 2729e537f6
commit bb06ce59a9
2 changed files with 0 additions and 5 deletions

View File

@@ -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()),

View File

@@ -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;