Try to fix lint "Fields should be declared at the top of the class, before any method declarations, constructors, initializers or inner classes."

This commit is contained in:
Christoph Loy 2020-02-25 23:53:46 +01:00 committed by Niedermann IT-Dienstleistungen
parent 52cd277f81
commit 44f15c9628

View file

@ -16,7 +16,6 @@ import android.widget.EditText;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatDialogFragment;
import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.RecyclerView;
import java.util.List;
@ -38,6 +37,8 @@ public class CategoryDialogFragment extends AppCompatDialogFragment {
private NoteSQLiteOpenHelper db;
private CategoryDialogListener listener;
private EditText editCategory;
/**
* Interface that must be implemented by the calling Activity.
*/
@ -55,9 +56,6 @@ public class CategoryDialogFragment extends AppCompatDialogFragment {
private long accountId;
private EditText editCategory;
private RecyclerView recyclerView;
private CategoryAdapter adapter;
@Override