Skip to content

Commit f2b81f2

Browse files
committed
APi fix
1 parent 344bb51 commit f2b81f2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

debug/org.eclipse.debug.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.debug.core; singleton:=true
5-
Bundle-Version: 3.24.0.qualifier
5+
Bundle-Version: 3.23.0.qualifier
66
Bundle-Activator: org.eclipse.debug.core.DebugPlugin
77
Bundle-Vendor: %providerName
88
Bundle-Localization: plugin

debug/org.eclipse.debug.core/core/org/eclipse/debug/core/model/Breakpoint.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -386,20 +386,20 @@ public String toString() {
386386
/**
387387
* Returns associated label associated with the breakpoint.
388388
*
389-
* @since 3.24
389+
* @since 3.23
390390
*/
391391
public String getBreakpointLabel() {
392-
return getMarker().getAttribute(LABEL, ""); //$NON-NLS-1$
392+
return getMarker().getAttribute(IBreakpoint.LABEL, ""); //$NON-NLS-1$
393393
}
394394

395395
/**
396396
* Sets a new label for the breakpoint.
397397
*
398-
* @param label provide by the user
399-
* @since 3.24
398+
* @param labelValue provide by the user
399+
* @since 3.23
400400
*/
401-
public void setBreakpointLabel(String label) throws CoreException {
402-
setAttribute(LABEL, label);
401+
public void setBreakpointLabel(String labelValue) throws CoreException {
402+
setAttribute(IBreakpoint.LABEL, labelValue);
403403
}
404404

405405
}

debug/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public interface IBreakpoint extends IAdaptable {
125125
* <code>String</code> corresponding to a custom label of a breakpoint.
126126
*
127127
* @see org.eclipse.core.resources.IMarker#getAttribute(String, String)
128-
* @since 3.24
128+
* @since 3.23
129129
*/
130130
String LABEL = "org.eclipse.debug.core.label"; //$NON-NLS-1$
131131

0 commit comments

Comments
 (0)