Skip to content

Commit 5f06dad

Browse files
committed
Fix, missing negation
1 parent 1b7f533 commit 5f06dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/filter/RemoteRepositoryFilterSourceSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ protected String configPropKey(String name) {
7474
*/
7575
protected boolean isEnabled(RepositorySystemSession session) {
7676
return ConfigUtils.getBoolean(session, false, CONFIG_PROP_PREFIX + this.name)
77-
&& ConfigUtils.getBoolean(session, false, CONFIG_PROP_PREFIX + this.name + ".skipped");
77+
&& !ConfigUtils.getBoolean(session, false, CONFIG_PROP_PREFIX + this.name + ".skipped");
7878
}
7979

8080
/**

0 commit comments

Comments
 (0)