diff options
| author | Tobias Bertelsen | 2013-04-25 15:59:41 +0000 |
|---|---|---|
| committer | Mike Rennie | 2013-04-25 15:59:41 +0000 |
| commit | 57341bb889ab97ae3a42c3f32972473f646f57d9 (patch) | |
| tree | 997a56e15465fe83dc92be23469ad0546233ddad | |
| parent | ee7a9ef6370dc94444e1f39d5f6b97311cca1adc (diff) | |
| download | eclipse.platform-57341bb889ab97ae3a42c3f32972473f646f57d9.tar.gz eclipse.platform-57341bb889ab97ae3a42c3f32972473f646f57d9.tar.xz eclipse.platform-57341bb889ab97ae3a42c3f32972473f646f57d9.zip | |
Bug 406229 -
org.eclipse.ant.internal.launching.debug.AntSourceLookupDirector is
specified as a org.eclipse.debug.core.sourceLocators in the wrong bundle
| -rw-r--r-- | ant/org.eclipse.ant.launching/plugin.xml | 10 | ||||
| -rw-r--r-- | ant/org.eclipse.ant.ui/plugin.xml | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/ant/org.eclipse.ant.launching/plugin.xml b/ant/org.eclipse.ant.launching/plugin.xml index 05e314f0b..26751943a 100644 --- a/ant/org.eclipse.ant.launching/plugin.xml +++ b/ant/org.eclipse.ant.launching/plugin.xml @@ -99,5 +99,13 @@ point="org.eclipse.core.resources.markers"> <super type="org.eclipse.debug.core.lineBreakpointMarker"/> <persistent value="true"/> - </extension> + </extension> + <extension + point="org.eclipse.debug.core.sourceLocators"> + <sourceLocator + name="%antSourceLookupDirector.name" + class="org.eclipse.ant.internal.launching.debug.AntSourceLookupDirector" + id="org.eclipse.ant.ui.debug.sourceLookupDirector"> + </sourceLocator> + </extension> </plugin> diff --git a/ant/org.eclipse.ant.ui/plugin.xml b/ant/org.eclipse.ant.ui/plugin.xml index 595239940..948559d35 100644 --- a/ant/org.eclipse.ant.ui/plugin.xml +++ b/ant/org.eclipse.ant.ui/plugin.xml @@ -620,14 +620,6 @@ M4 = Platform-specific fourth key --> </extension> <extension - point="org.eclipse.debug.core.sourceLocators"> - <sourceLocator - name="%antSourceLookupDirector.name" - class="org.eclipse.ant.internal.launching.debug.AntSourceLookupDirector" - id="org.eclipse.ant.ui.debug.sourceLookupDirector"> - </sourceLocator> - </extension> - <extension point="org.eclipse.debug.core.sourcePathComputers"> <sourcePathComputer class="org.eclipse.ant.internal.launching.debug.AntSourcePathComputerDelegate" |
