Skip to content

Commit

Permalink
Merge pull request #45984 from gsmet/wildfly-common
Browse files Browse the repository at this point in the history
Update WildFly Common to 2.0.1 and drop substitutions
  • Loading branch information
gsmet authored Jan 30, 2025
2 parents 0b131a7 + dc35b32 commit 4be415d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ updates:
- dependency-name: com.google.cloud.tools:jib-core
- dependency-name: org.jboss.threads:jboss-threads
- dependency-name: org.jboss.marshalling:*
- dependency-name: org.wildfly.common:*
# Quarkus
- dependency-name: io.quarkus.*:*
- dependency-name: io.quarkus:*
Expand Down
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<wildfly.openssl-linux.version>2.2.2.SP01</wildfly.openssl-linux.version>
<jboss-logging-annotations.version>3.0.3.Final</jboss-logging-annotations.version>
<slf4j-jboss-logmanager.version>2.0.0.Final</slf4j-jboss-logmanager.version>
<wildfly-common.version>1.7.0.Final</wildfly-common.version>
<wildfly-common.version>2.0.1</wildfly-common.version>
<wildfly-client-config.version>1.0.1.Final</wildfly-client-config.version>
<wildfly-elytron.version>2.6.0.Final</wildfly-elytron.version>
<jboss-marshalling.version>2.2.2.Final</jboss-marshalling.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
final class Target_org_wildfly_common_net_CidrAddress {

@Alias
private Target_org_wildfly_common_net_CidrAddress(InetAddress networkAddress, int netmaskBits) {
public static Target_org_wildfly_common_net_CidrAddress create(InetAddress networkAddress, int netmaskBits) {
return null;
}

@Alias
Expand All @@ -30,7 +31,7 @@ private Target_org_wildfly_common_net_CidrAddress(InetAddress networkAddress, in

static class CidrAddressUtil {
static Target_org_wildfly_common_net_CidrAddress newInstance(InetAddress networkAddress, int netmaskBits) {
return new Target_org_wildfly_common_net_CidrAddress(networkAddress, netmaskBits);
return Target_org_wildfly_common_net_CidrAddress.create(networkAddress, netmaskBits);
}
}
}

0 comments on commit 4be415d

Please sign in to comment.