From 4e02ce7daae85c68d31f732eba00300c40367fae Mon Sep 17 00:00:00 2001 From: fhassak <1149149+fhassak@users.noreply.github.com> Date: Wed, 2 Dec 2020 16:36:43 +0100 Subject: [PATCH] Fix javadoc in ExitStatus --- .../java/org/springframework/batch/core/ExitStatus.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/ExitStatus.java b/spring-batch-core/src/main/java/org/springframework/batch/core/ExitStatus.java index be000c5251..e44afb4859 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/ExitStatus.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/ExitStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2014 the original author or authors. + * Copyright 2006-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,8 +54,8 @@ public class ExitStatus implements Serializable, Comparable { public static final ExitStatus COMPLETED = new ExitStatus("COMPLETED"); /** - * Convenient constant value representing job that did no processing (e.g. - * because it was already complete). + * Convenient constant value representing job that did no processing + * (e.g. because it was already complete). */ public static final ExitStatus NOOP = new ExitStatus("NOOP");