You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/annotations/CacheIsolationType.java
+1-2
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,10 @@
17
17
/**
18
18
* Options for how Entity instances should be shared within an EclipseLink Persistence Unit / ServerSession
Copy file name to clipboardExpand all lines: foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/helper/DatabaseField.java
+54-1
Original file line number
Diff line number
Diff line change
@@ -47,13 +47,16 @@ public class DatabaseField implements Cloneable, Serializable, CoreField {
Copy file name to clipboardExpand all lines: foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/helper/DatabaseTable.java
Copy file name to clipboardExpand all lines: foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/oxm/record/namespaces/PrefixMapperNamespaceResolver.java
+1-2
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,7 @@ public PrefixMapperNamespaceResolver(NamespacePrefixMapper mapper, org.eclipse.p
45
45
}
46
46
StringdefaultUri= null;
47
47
if(nestedResolver != null){
48
-
for(Objectnext:nestedResolver.getNamespaces()) {
49
-
Namespacens = (Namespace)next;
48
+
for (Namespacens: nestedResolver.getNamespaces()) {
Copy file name to clipboardExpand all lines: foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/mappings/AggregateObjectMapping.java
+5-2
Original file line number
Diff line number
Diff line change
@@ -468,7 +468,7 @@ public Object buildAggregateFromRow(AbstractRecord databaseRow, Object targetObj
468
468
}
469
469
470
470
// Build a new aggregate if the target object does not reference an existing aggregate.
471
-
// EL Bug 474956 - build a new aggregate if the the target object references an existing aggregate, and
471
+
// EL Bug 474956 - build a new aggregate if the the target object references an existing aggregate, and
472
472
// the passed cacheKey is null from the invalidation of the target object in the IdentityMap.
Copy file name to clipboardExpand all lines: foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/tools/schemaframework/DefaultTableGenerator.java
0 commit comments