gwtd3 / gwt-d3

A GWT wrapper library around the d3.js library
Other
131 stars 53 forks source link

A bug in Array<Double>.fromDoubles(final double... args)? #89

Closed mkubliniak closed 9 years ago

mkubliniak commented 10 years ago

I noticed that connector lines are not displayed in Collapsible Tree Sample at http://gwt-d3.appspot.com/. However, when run in production mode, the connectors are displayed.

When I change line #123 from this: return Array.fromDoubles(data.x(), data.y()); to: Array a = Array.create(); a.push(data.x()); a.push(data.y()); return a; it works ok.

anthonime commented 9 years ago

could not reproduce