File tree Expand file tree Collapse file tree 3 files changed +0
-41
lines changed
app/src/main/java/com/github/mobile/ui Expand file tree Collapse file tree 3 files changed +0
-41
lines changed Original file line number Diff line number Diff line change 17
17
18
18
import static java .lang .String .CASE_INSENSITIVE_ORDER ;
19
19
import android .accounts .Account ;
20
- import android .text .TextUtils ;
21
20
import android .util .Log ;
22
21
23
22
import com .github .mobile .R .string ;
@@ -106,20 +105,6 @@ public void execute() {
106
105
}.execute ();
107
106
}
108
107
109
- /**
110
- * Get collaborator with login
111
- *
112
- * @param login
113
- * @return collaborator or null if none found with login
114
- */
115
- public User getCollaborator (String login ) {
116
- if (collaborators == null )
117
- return null ;
118
- if (TextUtils .isEmpty (login ))
119
- return null ;
120
- return collaborators .get (login );
121
- }
122
-
123
108
/**
124
109
* Show dialog with given assignee selected
125
110
*
Original file line number Diff line number Diff line change 17
17
18
18
import static java .lang .String .CASE_INSENSITIVE_ORDER ;
19
19
import android .accounts .Account ;
20
- import android .text .TextUtils ;
21
20
import android .util .Log ;
22
21
23
22
import com .github .mobile .R .string ;
@@ -109,20 +108,6 @@ public void execute() {
109
108
}.execute ();
110
109
}
111
110
112
- /**
113
- * Get label with name
114
- *
115
- * @param name
116
- * @return label or null if none with name
117
- */
118
- public Label getLabel (String name ) {
119
- if (labels == null )
120
- return null ;
121
- if (TextUtils .isEmpty (name ))
122
- return null ;
123
- return labels .get (name );
124
- }
125
-
126
111
/**
127
112
* Show dialog with given labels selected
128
113
*
Original file line number Diff line number Diff line change @@ -66,17 +66,6 @@ public CodeTreeAdapter(Activity activity) {
66
66
activity .getResources (), INDENTED_PADDING );
67
67
}
68
68
69
- /**
70
- * @param context
71
- */
72
- public CodeTreeAdapter (Context context ) {
73
- super (context );
74
-
75
- this .context = context ;
76
- indentedPaddingLeft = ServiceUtils .getIntPixels (context .getResources (),
77
- INDENTED_PADDING );
78
- }
79
-
80
69
/**
81
70
* Set whether views should be indented
82
71
*
You can’t perform that action at this time.
0 commit comments