Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/resource/java/binary/BinaryAnnotation.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/resource/java/binary/BinaryAnnotation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/resource/java/binary/BinaryAnnotation.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/resource/java/binary/BinaryAnnotation.java
index e558220bcd..7d5b6bf1ec 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/resource/java/binary/BinaryAnnotation.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/resource/java/binary/BinaryAnnotation.java
@@ -55,7 +55,7 @@ public abstract class BinaryAnnotation
/**
* Return the JDT annotation's member-value pair with the specified name.
*/
- protected IMemberValuePair getJdtMemberValuePair(String memberName) {
+ private IMemberValuePair getJdtMemberValuePair(String memberName) {
for (IMemberValuePair pair : this.getJdtMemberValuePairs()) {
if (pair.getMemberName().equals(memberName)) {
return pair;
@@ -64,7 +64,7 @@ public abstract class BinaryAnnotation
return null;
}
- protected IMemberValuePair[] getJdtMemberValuePairs() {
+ private IMemberValuePair[] getJdtMemberValuePairs() {
try {
return this.jdtAnnotation.getMemberValuePairs();
} catch (JavaModelException ex) {

Back to the top