Eclipse 3 internal bug fix breaks ES Form & Action wizards
Brought to you by:
eboudrant,
pombredanne
https://bugs.eclipse.org/bugs/show_bug.cgi?id=39038
They renamed a bunch of misspelled methods in the:
org.eclipse.jdt.internal.ui.*
packages.
From the bug comments, it sounds like they made the
decision to change the names because these were not
public interfaces to Eclipse (i.e. the "internal" package
name).
The specific change that is killing ES right now is that
they fixed the spelling of the word "height" by renaming:
org.eclipse.jdt.internal.ui.util.SWTUtil.getButtonHeigthHint
to
org.eclipse.jdt.internal.ui.util.SWTUtil.getButtonHeightHint
I would recommend that any dependencies to packages
with .internal in their name be removed from ES.
- K