Skip to content

Commit

Permalink
add export of internal.weaving package
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Jan 23, 2024
1 parent 266b1d9 commit 02b78ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions bundles/eclipselink/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@
exports org.eclipse.persistence.internal.sessions.factories;
exports org.eclipse.persistence.internal.sessions.factories.model;
exports org.eclipse.persistence.internal.sessions.remote;
exports org.eclipse.persistence.internal.weaving;
exports org.eclipse.persistence.internal.xr;

//exported through EclipseLink INTERNAL API
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021, 2023 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down Expand Up @@ -194,7 +194,7 @@
org.eclipse.persistence.sdo,
org.eclipse.persistence.pgsql;
exports org.eclipse.persistence.internal.mappings.converters to org.eclipse.persistence.jpa;
exports org.eclipse.persistence.internal.weaving to org.eclipse.persistence.jpa;
exports org.eclipse.persistence.internal.weaving;
exports org.eclipse.persistence.internal.cache to org.eclipse.persistence.moxy;
exports org.eclipse.persistence.internal.oxm.schema to
org.eclipse.persistence.dbws,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2023 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2024 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2023 IBM Corporation. All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -202,7 +202,7 @@ public synchronized void addQuery(DatabaseQuery query) {
List<DatabaseQuery> queriesByName = getQueries().get(query.getName());
if (queriesByName == null) {
// lazily create Vector in Hashtable.
queriesByName = org.eclipse.persistence.internal.helper.NonSynchronizedVector.newInstance();
queriesByName = new ArrayList<>();
getQueries().put(query.getName(), queriesByName);
} else {
int argumentTypesSize = 0;
Expand Down Expand Up @@ -597,9 +597,9 @@ public DatabaseQuery getLocalQuery(String name, Vector arguments) {
if (arguments != null) {
argumentTypesSize = arguments.size();
}
Vector argumentTypes = org.eclipse.persistence.internal.helper.NonSynchronizedVector.newInstance(argumentTypesSize);
List<Class<?>> argumentTypes = new ArrayList<>(argumentTypesSize);
for (int i = 0; i < argumentTypesSize; i++) {
argumentTypes.addElement(arguments.elementAt(i).getClass());
argumentTypes.add(arguments.elementAt(i).getClass());
}
return getLocalQueryByArgumentTypes(name, argumentTypes);

Expand Down

0 comments on commit 02b78ac

Please sign in to comment.