Skip to content

Commit 48295e1

Browse files
dreis2211snicoll
authored andcommitted
Fix assertion
Closes spring-projectsgh-15871
1 parent dc31f61 commit 48295e1

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/dependencies

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/dependencies/Dependency.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2018 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -145,7 +145,7 @@ public static final class Exclusion {
145145

146146
Exclusion(String groupId, String artifactId) {
147147
Assert.notNull(groupId, "GroupId must not be null");
148-
Assert.notNull(groupId, "ArtifactId must not be null");
148+
Assert.notNull(artifactId, "ArtifactId must not be null");
149149
this.groupId = groupId;
150150
this.artifactId = artifactId;
151151
}

0 commit comments

Comments
 (0)