Make ExitCodeGenerators package-private

ExitCodeGenerators is not going to be immediately used by spring-task so
it can remain package-private for now.

See gh-4757
This commit is contained in:
Phillip Webb 2015-12-17 18:16:49 +00:00
parent 5abe8121c4
commit 25a7294371
1 changed files with 1 additions and 2 deletions

View File

@ -29,11 +29,10 @@ import org.springframework.util.Assert;
*
* @author Dave Syer
* @author Phillip Webb
* @since 1.3.1
* @see #getExitCode()
* @see ExitCodeGenerator
*/
public class ExitCodeGenerators implements Iterable<ExitCodeGenerator> {
class ExitCodeGenerators implements Iterable<ExitCodeGenerator> {
private List<ExitCodeGenerator> generators = new ArrayList<ExitCodeGenerator>();