Skip to content

Commit 7bdcee5

Browse files
committed
Merge pull request spring-projects#15871 from dreis2211
* pr/15871: Fix assertion
2 parents dc31f61 + 48295e1 commit 7bdcee5

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)