You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 536: Reduced number of lines in lambda in SpecDocumentHandlerBuilder to improve readability.
* 536: Reduced number of static imports to four in `AbstractLightWeightMarkupImporterTest`.
* 536: Allowed longer method for state transition table.
* 536: Allow wildcard generic.
* 536: Suppress warning about catching exceptions.
Copy file name to clipboardExpand all lines: importer/restructuredtext/src/main/java/org/itsallcode/openfasttrace/importer/restructuredtext/RestructuredTextImporter.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ public class RestructuredTextImporter extends AbstractLightWeightMarkupImporter
37
37
}
38
38
39
39
@Override
40
+
@SuppressWarnings("java:S138") // Transition table is OK be larger than 75 lines.
Copy file name to clipboardExpand all lines: importer/specobject/src/main/java/org/itsallcode/openfasttrace/importer/specobject/handler/SpecDocumentHandlerBuilder.java
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -65,11 +65,9 @@ public TreeContentHandler build()
65
65
thrownewImporterException("Element " + elem + " does not have an attribute '"
66
66
+ DOCTYPE_ATTRIBUTE_NAME + "' at " + elem.getLocation());
Copy file name to clipboardExpand all lines: importer/xmlparser/src/main/java/org/itsallcode/openfasttrace/importer/xmlparser/tree/CallbackContentHandler.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,7 @@ public void init(final TreeParsingController treeParsingController)
117
117
}
118
118
119
119
@Override
120
+
@SuppressWarnings("java:S2221") // Intentionally catching all exceptions to provide better error messages.
Copy file name to clipboardExpand all lines: testutil/src/main/java/org/itsallcode/openfasttrace/testutil/importer/lightweightmarkup/AbstractLightWeightMarkupImporterTest.java
0 commit comments