Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2015-12-22 15:48:38 +0000
committerBrian Vosburgh2015-12-22 15:48:38 +0000
commita6f3ee27c985c7afbec04a194d65326db8466b84 (patch)
tree0115238188d923ca3686b67e62d8293a50df4551
parente77f86827f03de0b8cb27d27d26b43c6590ae66e (diff)
downloadwebtools.dali-a6f3ee27c985c7afbec04a194d65326db8466b84.tar.gz
webtools.dali-a6f3ee27c985c7afbec04a194d65326db8466b84.tar.xz
webtools.dali-a6f3ee27c985c7afbec04a194d65326db8466b84.zip
fix compiler warnings in GenericJpaFile
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/GenericJpaFile.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/GenericJpaFile.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/GenericJpaFile.java
index da56f8325b..bf742102a1 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/GenericJpaFile.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/GenericJpaFile.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2013 Oracle. All rights reserved.
+ * Copyright (c) 2006, 2015 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
@@ -52,7 +52,7 @@ public class GenericJpaFile
* the root structure (context model) nodes corresponding to the resource
* model
*/
- protected final HashSet<JpaStructureNode> rootStructureNodes = new HashSet<JpaStructureNode>();
+ protected final HashSet<JpaStructureNode> rootStructureNodes = new HashSet<>();
// ********** construction **********
@@ -109,6 +109,7 @@ public class GenericJpaFile
}
/**
+ * <ul>
* <li>The JPA file for a <code>persistence.xml</code> will have one root
* structure node: <code>Persistence</code>
* <li>The JPA file for an <code>orm.xml</code> file will have one root
@@ -119,7 +120,7 @@ public class GenericJpaFile
* classes will be included only if they are either annotated or listed in
* the <code>persistence.xml</code>. The root structure nodes will be
* instances of <code>JavaPersistentType</code>.
- * <br><br>
+ * </ul>
* If a class is listed in both the <code>persistence.xml</code> and an
* <code>orm.xml</code> file, the root structure node will be the
* <code>JavaPersistentType</code> that was built by the
@@ -140,7 +141,7 @@ public class GenericJpaFile
this.clearCollection(this.rootStructureNodes, ROOT_STRUCTURE_NODES_COLLECTION);
return;
}
- Collection<JpaStructureNode> newRootStructureNodes = new HashSet<JpaStructureNode>();
+ Collection<JpaStructureNode> newRootStructureNodes = new HashSet<>();
persistenceXml.addRootStructureNodesTo(this, newRootStructureNodes);
this.synchronizeCollection(newRootStructureNodes, this.rootStructureNodes, ROOT_STRUCTURE_NODES_COLLECTION);
}

Back to the top