Skip to content

Commit

Permalink
Issue #350: Adjusted code formatting of constructor.
Browse files Browse the repository at this point in the history
Signed-off-by: Juergen Fickel <juergen.fickel@bosch-si.com>
  • Loading branch information
Juergen Fickel committed Apr 3, 2019
1 parent 6e26ea4 commit 952df55
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -123,10 +123,7 @@ public abstract class DittoServiceTng<C extends ServiceSpecificConfig> {
* @throws NullPointerException if any argument is {@code null}.
* @throws IllegalArgumentException if {@code serviceName} or {@code rootActorName} is empty.
*/
protected DittoServiceTng(final Logger logger,
final String serviceName,
final String rootActorName) {

protected DittoServiceTng(final Logger logger, final String serviceName, final String rootActorName) {
this.logger = checkNotNull(logger, "logger");
this.serviceName = argumentNotEmpty(serviceName, "service name");
this.rootActorName = argumentNotEmpty(rootActorName, "root actor name");
Expand Down

0 comments on commit 952df55

Please sign in to comment.