Remove unnecessary modifiers

This commit is contained in:
Daniel Schaal 2015-09-27 09:46:58 +02:00
parent 714b84aa63
commit 9447e563a5
5 changed files with 5 additions and 5 deletions

View file

@ -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();
}

View file

@ -326,7 +326,7 @@ public class NewsListRecyclerAdapter extends RecyclerView.Adapter {
}
public interface IOnRefreshFinished {
public void OnRefreshFinished();
void OnRefreshFinished();
}
public void refreshAdapterDataAsync(IOnRefreshFinished listener) {

View file

@ -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

View file

@ -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);
}

View file

@ -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);
}