Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Eclipse/Status meetings/Minutes

< Eclipse‎ | Status meetings
Revision as of 08:27, 27 January 2016 by Daniel Megert.ch.ibm.com (Talk | contribs) (Platform Text (Dani))


January 27, 2016

Discussion/Reminders

  • What is the policy on increasing features versions that increase simply because they have a branding bundle? See bug 486616 both for this question, as well as a "late report" on other bundles and features that may need to be "bumped" for Mars.2.
  • Neon M5 sign-off on Thursday
  • Mars.2 RC2 test pass on Thursday

Status

Platform Workspace (Szymon P)

Platform UI (Lars)

Platform Text (Dani)

  • Neon M5 Bug fixing and testing

Platform Debug (Sarika)

  • Neon M5 Bug fixing and testing

Platform Ant (Sarika)

  • Neon M5 Bug fixing and testing

Platform SWT (Arun)

Platform Releng (David)

JDT Core (Jay)

JDT Debug (Sarika)

  • Neon M5 Bug fixing and testing

JDT UI (Markus)

PDE (Vikas)

Equinox (Tom Watson)

Equinox p2 (Pascal)

January 20, 2016

Discussion/Reminders

  • ListenerList has been generified (bug 483340). ListenerList#getListeners() still returns Object[]. Clients should not only add type arguments to the ListenerList, but also convert usages of #getListeners() to an enhanced 'for' loop, thereby taking advantage of the type-safe #iterator().
    • Old:
      		Object[] listeners= fInputChangeListeners.getListeners();
      		for (int i= 0; i < listeners.length; i++) {
      			((IInputChangedListener) listeners[i]).inputChanged(fInput);
      		}
      
    • New:
      		for (IInputChangedListener listener : fInputChangeListeners) {
      			listener.inputChanged(fInput);
      		}
      
    • Regular expression to convert usages that followed the old recommendation:
       Search : Object\s*\[\]\s*(\w+)s\s*=\s*(\w+)\.getListeners\(\);\s*for\s*\(int\s*(\w+)\s*=\s*0;\s*\3\s*<\s*\1s\.length;\s*\3\+\+\)(\s*\{\s*)(?:\(\((\w+)\)\s*\1s\[\3\]\)|(\w+)\s*\1\s*=\s*\(\6\)\s*\1s\[\3\];\s*\1)\.([^}]+\})
       Replace: for (\5\6 \1 : \2)\4\1.\7
      
  • EventManager is a problem (bug 486067). I would deprecate it instead of trying to generify it. [Markus]
  • Next week is Neon M5. The Bangalore team has a public holiday on Tuesday and will already test on Monday. Please don't release risky fixes on Monday, since we will have less cross-component test coverage for them.
  • Status

    Platform Workspace (Szymon P)

    Platform UI (Lars)

    Platform Text (Dani)

    Platform Debug (Sarika)

    • Neon M5 Bug Fixing

    Platform Ant (Sarika)

    • Neon M5 Bug Fixing

    Platform SWT (Arun)

    Platform Releng (David)

    JDT Core (Jay)

    • 4.5.2 Bug verification and testing
    • M5 Bug fixes

    JDT Debug (Sarika)

    • Neon M5 Bug Fixing

    JDT UI (Markus)

    • Content Assist supports sub-string completion and proposals highlight the matching characters.

    PDE (Vikas)

    • Neon M5 Bug Fixing

    Equinox (Tom Watson)

    Equinox p2 (Pascal)

    January 6, 2016

    Discussion/Reminders

    • Mars.2 RC1 next week (warm-up only - no test pass), see Eclipse Mars.2 (4.5.2) Endgame Plan for details.
    • Dani: Happy New Year to everyone! Sorry, I can't join today due to a conflict.

    Status

    Platform Workspace (Szymon P)

    Platform UI (Lars)

    Platform Text (Dani)

    Platform Debug (Sarika)

    • Neon M6 bug fixing

    Platform Ant (Sarika)

    • Mars.2 Ant upgrade to 1.9.6

    Platform SWT (Arun)

    • Neon M5 and 4.5.2 bug fixes and patch reviews

    Platform Releng (David)

    JDT Core (Jay)

    • Neon M6 bug fixes
    • 4.5.2 back porting.

    JDT Debug (Sarika)

    • Neon M6 bug fixing
    • Mars.2 backporting

    JDT UI (Markus)

    PDE (Vikas)

    Equinox (Tom Watson)

    Equinox p2 (Pascal)

    Archived Minutes


Back to the top