Skip to content

Commit

Permalink
Removing invalid supressions
Browse files Browse the repository at this point in the history
  • Loading branch information
cuioss committed Oct 6, 2023
1 parent bd88d20 commit 392db67
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import de.cuioss.uimodel.field.DynamicField;
import de.cuioss.uimodel.field.DynamicFieldType;

@SuppressWarnings({ "rawtypes", "javadoc" })
@SuppressWarnings({ "rawtypes" })
public class BaseDynamicFieldGenerator implements TypedGenerator<DynamicField> {

private final TypedGenerator<String> generator = Generators.letterStrings();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import de.cuioss.test.generator.TypedGenerator;

@SuppressWarnings({ "rawtypes", "javadoc" })
@SuppressWarnings({ "rawtypes" })
public class AugmentationMapGenerator implements TypedGenerator<Map> {

public static final String KEY1 = "key1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import de.cuioss.uimodel.model.conceptkey.ConceptCategory;
import de.cuioss.uimodel.model.conceptkey.ConceptKeyType;

@SuppressWarnings("javadoc")
public class ConceptCategoryGenerator implements TypedGenerator<ConceptCategory> {

private final TypedGenerator<ConceptCategory> generator = Generators.fixedValues(ConceptCategory.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

import de.cuioss.test.generator.TypedGenerator;

@SuppressWarnings({ "javadoc", "rawtypes" })
@SuppressWarnings({ "rawtypes" })
public class LocaleMappingGenerator implements TypedGenerator<Map> {

private final TypedGenerator<String> labels = nonEmptyStrings();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import de.cuioss.test.generator.Generators;
import de.cuioss.test.generator.TypedGenerator;

@SuppressWarnings({ "javadoc", "rawtypes" })
@SuppressWarnings({ "rawtypes" })
public class DisplayNameProviderGenerator implements TypedGenerator<IDisplayNameProvider> {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import lombok.Data;

@Data
@SuppressWarnings("javadoc")
public class ConfiguredData {

private final String language;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import de.cuioss.test.generator.TypedGenerator;

@SuppressWarnings({ "javadoc", "rawtypes" })
@SuppressWarnings({ "rawtypes" })
public class ConfiguredDataGenerator implements TypedGenerator<Stream> {

private final List<ConfiguredData> valid = Arrays.asList(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package de.cuioss.uimodel.result;

@SuppressWarnings("javadoc")
public enum ExampleErrorCodes {

SERVICE_NOT_AVAILABLE, TEST, TEST2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import de.cuioss.uimodel.nameprovider.IDisplayNameProvider;
import de.cuioss.uimodel.nameprovider.LabeledKey;

@SuppressWarnings("javadoc")
public class ResultDetailGenerator implements TypedGenerator<ResultDetail> {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import de.cuioss.test.generator.Generators;
import de.cuioss.test.generator.TypedGenerator;

@SuppressWarnings({ "javadoc", "rawtypes" })
@SuppressWarnings({ "rawtypes" })
public class ResultObjectGenerator implements TypedGenerator<ResultObject> {

private static final ResultDetailGenerator DETAIL_GENERATOR = new ResultDetailGenerator();
Expand Down

0 comments on commit 392db67

Please sign in to comment.