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

Difference between revisions of "Eclipse/Status meetings/Minutes"

(PDE (Vikas))
(Discussion/Reminders)
Line 8: Line 8:
  
 
=== Discussion/Reminders ===
 
=== 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().
+
<ul>
** EventManager is a problem ({{bug|486067}}). I would deprecate it instead of trying to generify it. [Markus]
+
<li>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().
* Next week is Neon M5. 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 coverage for them.
+
<ul><li>Old:<pre>
 +
Object[] listeners= fInputChangeListeners.getListeners();
 +
for (int i= 0; i < listeners.length; i++) {
 +
((IInputChangedListener) listeners[i]).inputChanged(fInput);
 +
}
 +
</pre></li>
 +
<li>New:<pre>
 +
for (IInputChangedListener listener : fInputChangeListeners) {
 +
listener.inputChanged(fInput);
 +
}
 +
</pre></li></ul>
 +
<li>EventManager is a problem ({{bug|486067}}). I would deprecate it instead of trying to generify it. [Markus]</li>
 +
<li>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.</li>
  
 
=== Status ===
 
=== Status ===

Revision as of 11:01, 20 January 2016


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);
      		}
      
  • 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