Skip to content

Commit

Permalink
chore(core): checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez authored and lburgazzoli committed Apr 13, 2021
1 parent 42d86cc commit 5909f6d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.apache.camel.util.ObjectHelper;

import java.util.Arrays;
import java.util.Collections;

@Configurer
public class SourcesConfigurer extends AbstractPhaseListener {
Expand Down Expand Up @@ -107,7 +106,9 @@ static void sortSources(SourceDefinition[] sources) {
return SourceType.source.compareTo(b.getType());
} else if (b.getType() == null) {
return a.getType().compareTo(SourceType.source);
} else return a.getType().compareTo(b.getType());
} else {
return a.getType().compareTo(b.getType());
}
});
}

Expand Down

0 comments on commit 5909f6d

Please sign in to comment.