Removed unnecessary semicolons.

This commit is contained in:
Christine Emrich 2015-11-16 13:59:30 +01:00
parent f218691240
commit 78fba8a15f
5 changed files with 5 additions and 5 deletions

View file

@ -649,6 +649,6 @@ public class SettingsActivity extends PreferenceActivity {
pd.dismiss();
Toast.makeText(context, context.getString(R.string.cache_is_cleared), Toast.LENGTH_SHORT).show();
super.onPostExecute(result);
};
}
}
}

View file

@ -23,7 +23,7 @@ public class CurrentRssItemViewDao extends AbstractDao<CurrentRssItemView, Long>
public static class Properties {
public final static Property Id = new Property(0, long.class, "id", true, "_id");
public final static Property RssItemId = new Property(1, long.class, "rssItemId", false, "RSS_ITEM_ID");
};
}
public CurrentRssItemViewDao(DaoConfig config) {

View file

@ -33,7 +33,7 @@ public class FeedDao extends AbstractDao<Feed, Long> {
public final static Property FaviconUrl = new Property(3, String.class, "faviconUrl", false, "FAVICON_URL");
public final static Property Link = new Property(4, String.class, "link", false, "LINK");
public final static Property AvgColour = new Property(5, String.class, "avgColour", false, "AVG_COLOUR");
};
}
private DaoSession daoSession;

View file

@ -23,7 +23,7 @@ public class FolderDao extends AbstractDao<Folder, Long> {
public static class Properties {
public final static Property Id = new Property(0, long.class, "id", true, "_id");
public final static Property Label = new Property(1, String.class, "label", false, "LABEL");
};
}
private DaoSession daoSession;

View file

@ -43,7 +43,7 @@ public class RssItemDao extends AbstractDao<RssItem, Long> {
public final static Property PubDate = new Property(13, java.util.Date.class, "pubDate", false, "PUB_DATE");
public final static Property EnclosureLink = new Property(14, String.class, "enclosureLink", false, "ENCLOSURE_LINK");
public final static Property EnclosureMime = new Property(15, String.class, "enclosureMime", false, "ENCLOSURE_MIME");
};
}
private DaoSession daoSession;