Skip to content

Commit

Permalink
Code formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-waltermire committed Oct 19, 2024
1 parent 8d850e2 commit 1cdc024
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@ public static MetapathExpression compile(@NonNull String path) {
*/
@NonNull
public static MetapathExpression compile(@NonNull String path, @NonNull StaticContext context) {
@NonNull
MetapathExpression retval;
@NonNull MetapathExpression retval;
if (".".equals(path)) {
retval = CONTEXT_NODE;
} else {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-FileCopyrightText: none
* SPDX-License-Identifier: CC0-1.0
*/

package gov.nist.secauto.metaschema.core.model.xml;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-FileCopyrightText: none
* SPDX-License-Identifier: CC0-1.0
*/

package gov.nist.secauto.metaschema.core.model.constraint;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-FileCopyrightText: none
* SPDX-License-Identifier: CC0-1.0
*/

package gov.nist.secauto.metaschema.databind.io;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public static LoggingValidationHandler instance() {
* Get a singleton instance of the logging validation handler.
*
* @param logExceptions
* {@code true} if this instance will log exceptions or {@code false} otherwise
* {@code true} if this instance will log exceptions or {@code false}
* otherwise
* @return the instance
*/
@SuppressFBWarnings(value = "SING_SINGLETON_GETTER_NOT_SYNCHRONIZED",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ void evaluateResult(@NonNull ExitStatus status, @NonNull ExitCode expectedCode,
}

private static Stream<Arguments> providesValues() {
@SuppressWarnings("serial")
List<Arguments> values = new LinkedList<>() {
@SuppressWarnings("serial") List<Arguments> values = new LinkedList<>() {
{
add(Arguments.of(new String[] {}, ExitCode.INVALID_COMMAND,
NO_EXCEPTION_CLASS));
Expand Down

0 comments on commit 1cdc024

Please sign in to comment.