Skip to content

Commit

Permalink
LDEV-4772 - make more direct calls and set version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 6, 2024
1 parent 708f60f commit 8b278b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,21 @@ public Object invoke(PageContext pc, Object[] args) throws PageException {

@Deprecated
public static Object call(PageContext pc, String type, String className) throws PageException {
return call(pc, type, className, null, null);
return call(pc, type, (Object) className, null, null);
}

@Deprecated
public static Object call(PageContext pc, String type, String className, Object context) throws PageException {
return call(pc, type, className, context, null);
return call(pc, type, (Object) className, context, null);
}

@Deprecated
public static Object call(PageContext pc, String type, String className, Object objClass, Object context) throws PageException {
return call(pc, type, (Object)className, objClass, context);
return call(pc, type, (Object) className, objClass, context);
}

public static Object call(PageContext pc, String cfcName) throws PageException {
return call(pc, "component", cfcName, null, null);
return call(pc, "component", (Object) cfcName, null, null);
}

public static Object call(PageContext pc, String type, Object objClass) throws PageException {
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.2.3-SNAPSHOT"/>
<property name="version" value="6.1.2.4-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.2.3-SNAPSHOT</version>
<version>6.1.2.4-SNAPSHOT</version>
<packaging>jar</packaging>

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

0 comments on commit 8b278b1

Please sign in to comment.