Skip to content

Commit

Permalink
Merge pull request #9 from DevFactory/release/members-of-interface-de…
Browse files Browse the repository at this point in the history
…claration-or-class-pre-defined-order-fix-1

squid:S1213 - The members of an interface declaration or class should appear in a pre-defined order
  • Loading branch information
julesbond007 committed Mar 8, 2016
2 parents f2d6d0a + 03b3d37 commit f638f3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/jigdraw/draw/util/DBUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
*/
public final class DBUtil {

private DBUtil() {}

public static final int DATABASE_VERSION = 1;
public static final String DATABASE_NAME = "jigsaw.db";
public static final String JIGSAW_TABLE = "jigsaw_images";
Expand Down Expand Up @@ -59,6 +57,8 @@ private DBUtil() {}
public final static String[] ALL_COLUMNS = new String[]{ID_COLUMN, NAME_COLUMN,
IMAGE_COLUMN, DESC_COLUMN, ORIGINAL_COLUMN};

private DBUtil() {}

/** arguments to set for the prepared statements */
public static String[] getIdArguments(final Long id) {
return new String[]{String.valueOf(id)};
Expand Down

0 comments on commit f638f3e

Please sign in to comment.