Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2016-04-19 19:55:45 +0000
committerThomas Watson2017-06-16 12:38:08 +0000
commit51280f1cd1fd7c19a17a7d360538c33745b2d5d1 (patch)
tree435711c54976f982fec18a83017396865753d8ea /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
parent9566e37ecdca4821070a7a45836264566c9f3c37 (diff)
downloadrt.equinox.framework-51280f1cd1fd7c19a17a7d360538c33745b2d5d1.tar.gz
rt.equinox.framework-51280f1cd1fd7c19a17a7d360538c33745b2d5d1.tar.xz
rt.equinox.framework-51280f1cd1fd7c19a17a7d360538c33745b2d5d1.zip
Bug 492043 - [osgi R7] Implement FrameworkEvent STOPPED_SYSTEM_REFRESHED event
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
index 282bfb7e1..f02e02d30 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
@@ -262,7 +262,7 @@ public class EquinoxContainerAdaptor extends ModuleContainerAdaptor {
case STOPPED :
return FrameworkEvent.STOPPED;
case STOPPED_REFRESH :
- return FrameworkEvent.STOPPED_BOOTCLASSPATH_MODIFIED;
+ return FrameworkEvent.STOPPED_SYSTEM_REFRESHED;
case STOPPED_UPDATE :
return FrameworkEvent.STOPPED_UPDATE;
case STOPPED_TIMEOUT :

Back to the top