[Minor] Automated Code cleanups

This commit is contained in:
Robert von Burg 2023-04-04 09:55:17 +02:00
parent f1819edbdc
commit 776bab72d9
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
8 changed files with 0 additions and 8 deletions

View File

@ -34,7 +34,6 @@ import li.strolch.agent.impl.DataStoreMode;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
@SuppressWarnings("nls")
public class RealmTest {
@Test

View File

@ -65,7 +65,6 @@ public class TimeValue<T extends IValue> implements ITimeValue<T>, Serializable
return this;
}
@SuppressWarnings("unchecked")
@Override
public int compareTo(final ITimeValue<T> arg0) {
return getTime().compareTo(arg0.getTime());

View File

@ -31,7 +31,6 @@ import li.strolch.model.xml.StrolchElementToDomVisitor;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
@SuppressWarnings("nls")
public class ModelToDomTest extends ModelMarshallingTest {
protected Resource formatAndParseResource(Resource resource) {

View File

@ -30,7 +30,6 @@ import li.strolch.model.xml.XmlModelSaxReader;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
@SuppressWarnings("nls")
public class ModelToSaxTest extends ModelMarshallingTest {
@Override

View File

@ -34,7 +34,6 @@ import li.strolch.model.xml.XmlModelSaxStreamReader;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
@SuppressWarnings("nls")
public class ModelToSaxWriterTest extends ModelMarshallingTest {
@Override

View File

@ -3,7 +3,6 @@ package javanet.staxutils;
/**
* Characters that represent line breaks and indentation. These are represented as String-valued JavaBean properties.
*/
@SuppressWarnings("nls")
public interface Indentation {
/**

View File

@ -65,7 +65,6 @@ import javanet.staxutils.helpers.StreamWriterDelegate;
*
* @author <a href="mailto:jk2006@engineer.com">John Kristian</a>
*/
@SuppressWarnings("nls")
public class IndentingXMLStreamWriter extends StreamWriterDelegate implements Indentation {
public IndentingXMLStreamWriter(XMLStreamWriter out) {

View File

@ -565,7 +565,6 @@ public class FileHelper {
*
* @return the humanized form of the files size
*/
@SuppressWarnings("nls")
public static String humanizeFileSize(long fileSize) {
return DataUnit.Bytes.humanizeBytesValue(fileSize);
}