The code generation for the default template project is broken. When generating the property information the getter method misses the parameter parenthesis ‘()’.

to-java:
  Property(x, Type(t)) -> $[
    private [t] [x];
  
    public [t] get_[x]  {
        return [x];
    }
  
    public void set_[x] ([t] [x]) {
        this.[x] = [x];    
    }
]
Submitted by Sven Stork on 14 December 2012 at 22:02

On 15 December 2012 at 02:41 Vlad Vergu tagged @vvergu

On 8 January 2013 at 13:08 Eelco Visser tagged 1.1

On 14 January 2013 at 11:52 Gabriël Konat tagged minor

On 22 January 2013 at 07:48 Gabriël Konat commented:

Fixed in r25840


On 22 January 2013 at 07:48 Gabriël Konat closed this issue.

Log in to post comments