wmyywm / eclipse-code-formatter-intellij-plugin

Automatically exported from code.google.com/p/eclipse-code-formatter-intellij-plugin
0 stars 0 forks source link

Order of imports reversed. #44

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The imports organized by the plugin look like this:
import android.widget.TextView;
import android.view.View;
import android.view.LayoutInflater;
import android.content.Context;

when they should be like this (like in eclipse):
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;

Original issue reported on code.google.com by natemc...@gmail.com on 22 Apr 2013 at 11:46

GoogleCodeExporter commented 9 years ago

Original comment by vojta.kr...@gmail.com on 22 Apr 2013 at 12:43

GoogleCodeExporter commented 9 years ago
you can update

Original comment by vojta.kr...@gmail.com on 22 Apr 2013 at 1:26