Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2011-11-01 17:36:14 +0000
committerkmoore2011-11-01 17:36:14 +0000
commit51d2e3453aeefe1ed7e27c8d9ac5369f1f1541aa (patch)
tree3692f4172a54609652832d38249a23d3feee5467 /common/plugins/org.eclipse.jpt.common.utility
parentb22493c9734b208b01e7923be1157b806f814195 (diff)
downloadwebtools.dali-51d2e3453aeefe1ed7e27c8d9ac5369f1f1541aa.tar.gz
webtools.dali-51d2e3453aeefe1ed7e27c8d9ac5369f1f1541aa.tar.xz
webtools.dali-51d2e3453aeefe1ed7e27c8d9ac5369f1f1541aa.zip
change method to protected for subclassing
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.utility')
-rw-r--r--common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/SingleAspectChangeSupport.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/SingleAspectChangeSupport.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/SingleAspectChangeSupport.java
index ef13a67927..f4641d1253 100644
--- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/SingleAspectChangeSupport.java
+++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/SingleAspectChangeSupport.java
@@ -84,7 +84,7 @@ public class SingleAspectChangeSupport
}
}
- private void check(Class<? extends EventListener> listenerClass, String aspectName) {
+ protected void check(Class<? extends EventListener> listenerClass, String aspectName) {
this.check(listenerClass);
if ( ! aspectName.equals(this.validAspectName)) {
throw new IllegalArgumentException(

Back to the top