Skip to content

Commit

Permalink
LDEV-4882 - fix invalid comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 6, 2024
1 parent 8511e88 commit aff75e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/config/ConfigAdmin.java
Original file line number Diff line number Diff line change
Expand Up @@ -6376,7 +6376,7 @@ public BundleDefinition[] _updateExtension(ConfigPro config, RHExtension ext) th
if (!StringUtil.isEmpty(res) && (r = ResourceUtil.toResourceExisting(config, res, null)) != null) {
try {
RHExtension _ext = new RHExtension(config, r);// TODO not load it again!
if (_ext != null && ext.getId().equalsIgnoreCase(ext.getId())) {
if (_ext != null && _ext.getId().equalsIgnoreCase(ext.getId())) {
old = RHExtension.toBundleDefinitions(ConfigWebUtil.getAsString("bundles", el, null)); // get existing bundles before populate new ones
ext.populate(el, false);
old = minus(old, OSGiUtil.toBundleDefinitions(ext.getBundles()));
Expand Down
2 changes: 1 addition & 1 deletion loader/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project default="core" basedir="." name="Lucee"
xmlns:resolver="antlib:org.apache.maven.resolver.ant">

<property name="version" value="6.1.0.175-SNAPSHOT"/>
<property name="version" value="6.1.0.176-SNAPSHOT"/>

<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
<classpath>
Expand Down
2 changes: 1 addition & 1 deletion loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.lucee</groupId>
<artifactId>lucee</artifactId>
<version>6.1.0.175-SNAPSHOT</version>
<version>6.1.0.176-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Lucee Loader Build</name>
Expand Down

0 comments on commit aff75e4

Please sign in to comment.