timowest / scalagen

Java to Scala transformation
Apache License 2.0
217 stars 32 forks source link

private fields of Java type T[] are translated as type T #43

Closed jmvanel closed 11 years ago

jmvanel commented 11 years ago

Example:

private String recordedLinks[];
//...
recordedLinks = new String[Parameters.TERM_LINK_RECORD_LENGTH];

translated as:

private var recordedLinks: String = new String(Parameters.TERM_LINK_RECORD_LENGTH)

In Java source: https://open-nars.googlecode.com/svn/trunk/open-nars/src/com/googlecode/opennars/entity/TaskLink.java

timowest commented 11 years ago

Released in 0.2.2