Removed unnecessary semicolons.
This commit is contained in:
parent
f218691240
commit
78fba8a15f
5 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue