Relative imports broken Follow
The plugin doesn't seem to recognize relative imports after updating to the latest (0.2.26322) maia plugin.
For example following works fine:
import com.foo.app.MyClass
and this does not
import app.MyClass
Please sign in to leave a comment.
This is not bug. This is a feature.
Relative imports is removed from scala 2.8, so if you replace all your imports, then you will be more ready to use scala 2.8 after release.
You also can use 2.8 trunk compiler, then you can use relative imports in such way:
instead of:
Best regards,
Alexander Podkhalyziun.