Skip to content

Commit 1523ffa

Browse files
committed
comments updated.
1 parent 8f269f5 commit 1523ffa

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

mobile/src/main/java/io/syslogic/github/recyclerview/ScrollListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void onScrolled(@NonNull RecyclerView recyclerView, int scrollX, int scro
6161

6262
public abstract boolean onLoadPage(int pageNumber, int totalCount);
6363

64-
/* setters */
64+
/* Setters */
6565
public static void setPageNumber(int value) {
6666
state.setPageNumber(value);
6767
}

mobile/src/main/java/io/syslogic/github/room/LicensesDao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface LicensesDao {
2525
@Query("SELECT * FROM " + Constants.TABLE_LICENSES)
2626
List<License> getItems();
2727

28-
/* for ContentProvider */
28+
/* For ContentProvider */
2929
@Query("SELECT * FROM " + Constants.TABLE_LICENSES)
3030
Cursor selectAll();
3131

mobile/src/main/java/io/syslogic/github/room/OwnersDao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public interface OwnersDao {
2424
@Query("SELECT * FROM " + Constants.TABLE_OWNERS)
2525
List<Owner> getItems();
2626

27-
/* for ContentProvider */
27+
/* For ContentProvider */
2828
@Query("SELECT * FROM " + Constants.TABLE_OWNERS)
2929
Cursor selectAll();
3030

mobile/src/main/java/io/syslogic/github/room/QueryStringsDao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public interface QueryStringsDao {
2727
@Query("SELECT * FROM " + Constants.TABLE_QUERY_STRINGS + " WHERE id = :itemId")
2828
QueryString getItem(Long itemId);
2929

30-
/* for ContentProvider */
30+
/* For ContentProvider */
3131
@Query("SELECT * FROM " + Constants.TABLE_QUERY_STRINGS)
3232
Cursor selectAll();
3333

mobile/src/main/java/io/syslogic/github/room/RepositoriesDao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public interface RepositoriesDao {
2626
@Query("SELECT * FROM " + Constants.TABLE_REPOSITORIES)
2727
List<Repository> getItems();
2828

29-
/* for ContentProvider */
29+
/* For ContentProvider */
3030
// @Transaction
3131
@Query("SELECT * FROM " + Constants.TABLE_REPOSITORIES)
3232
Cursor selectAll();

0 commit comments

Comments
 (0)