-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Debug ]Removal of Deprecated Constants #1784
base: master
Are you sure you want to change the base?
Conversation
Hi @mickaelistria , could you please check this when you have time ? |
18d4b04
to
ad147ab
Compare
* @deprecated Replaced by {@link IDebugUIConstants#COLUMN_ID_VARIABLE_NAME} | ||
*/ | ||
@Deprecated | ||
public final static String COLUMN_VARIABLE_NAME = IDebugUIConstants.COLUMN_ID_VARIABLE_NAME; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would break CDT, see
https://github.com/eclipse-cdt/cdt/blob/fd56a4ee112974c345bbb67fa939dea178494c00/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/IDebugVMConstants.java#L43
@jonahgraham : FYI.
I believe we first should make sure CDT would remove the reference to this constant. Already shipped CDT versions should be fine, as the constant value should be inlined by compiler.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In progress: eclipse-cdt/cdt#1131
This commit removes the deprecated constants in VariableColumnPresentation and updates references in DefaultVariableCellModifier and WatchExpressionCellModifier to use the new constants.
ad147ab
to
0a79341
Compare
This commit removes the deprecated constants in VariableColumnPresentation and updates references in DefaultVariableCellModifier and WatchExpressionCellModifier to use the new constants.