oliviercoma / fluent-builders-generator-eclipse-plugin

Automatically exported from code.google.com/p/fluent-builders-generator-eclipse-plugin
0 stars 0 forks source link

Primitive Type short gets imported #17

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
package some.package.needed.to.reproduce;
public class Pojo {
    private short a;

    public short getA() {
        return a;
    }

    public void setA(short a) {
        this.a = a;
    } 
}

What is the expected output? What do you see instead?
package some.package.needed.to.reproduce;

import short;//<-- primitive is imported

public class PojoBuilder extends PojoBuilderBase<PojoBuilder> {
...

What version of the product are you using? On what operating system?
1.0.9 on Eclipse Indigo

Please provide any additional information below.
The plugin works perfectly otherwise.  I just removed the import statement and 
everything is as expected.

Original issue reported on code.google.com by scot.h...@gmail.com on 8 Jul 2011 at 4:59