(In reply to Eclipse Genie from comment #53)
> Gerrit change https://git.eclipse.org/r/50125 was merged to [master].
> Commit:
> http://git.eclipse.org/c/platform/eclipse.platform.swt.git/commit/?id=3db87a8763e3fd3f931295da165ddee8363a7b16
> 

The Widget#valueContainsFlag(..) doesn't meet SWT's coding style and
quality standards:

- The standard idiom in SWT is this:

        if ((keymask & (OS.GDK_MOD1_MASK | OS.GDK_SHIFT_MASK
                        | OS.GDK_CONTROL_MASK | OS.GDK_SUPER_MASK
                        | OS.GDK_META_MASK | OS.GDK_HYPER_MASK)) != 0) {
                sendTreeDefaultSelection();
        }

Also note the position of the '{'.

The valueContainsFlag method should be removed again. If it would have
been kept, the following would have had to be fixed:

- Why is the type of 'value' long and not int?
- Missing @return description.
- Typo: Convienience (please check why you didn't see an error underline from 
the spell checker)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/586910

Title:
  Java editor view has no focus after double-clicking a java file

To manage notifications about this bug go to:
https://bugs.launchpad.net/eclipse-eclipsers/+bug/586910/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to