Remove unnecessary modifiers
This commit is contained in:
parent
714b84aa63
commit
9447e563a5
5 changed files with 5 additions and 5 deletions
|
@ -4,5 +4,5 @@ package de.luhmer.owncloudnewsreader.adapter;
|
|||
* Created by David on 18.07.2014.
|
||||
*/
|
||||
public interface HasId<T> {
|
||||
public T getId();
|
||||
T getId();
|
||||
}
|
||||
|
|
|
@ -326,7 +326,7 @@ public class NewsListRecyclerAdapter extends RecyclerView.Adapter {
|
|||
}
|
||||
|
||||
public interface IOnRefreshFinished {
|
||||
public void OnRefreshFinished();
|
||||
void OnRefreshFinished();
|
||||
}
|
||||
|
||||
public void refreshAdapterDataAsync(IOnRefreshFinished listener) {
|
||||
|
|
|
@ -39,7 +39,7 @@ public class AutoResizeTextView extends TextView {
|
|||
|
||||
// Interface for resize notifications
|
||||
public interface OnTextResizeListener {
|
||||
public void onTextResize(TextView textView, float oldSize, float newSize);
|
||||
void onTextResize(TextView textView, float oldSize, float newSize);
|
||||
}
|
||||
|
||||
// Our ellipse string
|
||||
|
|
|
@ -23,5 +23,5 @@ package de.luhmer.owncloudnewsreader.reader;
|
|||
|
||||
|
||||
public interface OnAsyncTaskCompletedListener {
|
||||
public abstract void onAsyncTaskCompleted(final int task_id, final Object task_result);
|
||||
void onAsyncTaskCompleted(final int task_id, final Object task_result);
|
||||
}
|
||||
|
|
|
@ -24,5 +24,5 @@ package de.luhmer.owncloudnewsreader.reader.owncloud;
|
|||
import org.json.JSONObject;
|
||||
|
||||
public interface IHandleJsonObject {
|
||||
public boolean performAction(JSONObject jObj);
|
||||
boolean performAction(JSONObject jObj);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue