Skip to content

Commit a9e1a6d

Browse files
committed
Updated docs / Debug is off
1 parent 66dc05b commit a9e1a6d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ API Compatibility: <b>3.0</b>
1818
1. Checkstyle (Ensures code style) `./gradlew checkstyleMain`
1919
2. PMD (Checks for bugs) `./gradlew pmdMain`
2020
3. Findbugs (Checks for bugs) `./gradlew findbugsMain`
21+
4. JUnit (Tests) `./gradlew build`
2122

2223
##Dependencies Required (If using standard JAR)
2324
1. Retrofit 1.6.1+

src/main/java/com/blockscore/common/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public final class Constants {
1010
public static final String AUTHORIZATION_HEADER = "Authorization";
1111
public static final String ACCEPT_HEADER = "Accept";
1212

13-
private static final boolean DEBUG_MODE = true;
13+
private static final boolean DEBUG_MODE = false;
1414
private static final String BLOCKSCORE_DOMAIN = "https://api.blockscore.com";
1515
private static final String BLOCKSCORE_DEV_DOMAIN = "http://127.0.0.1:5400";
1616
private static final String VERSION_CODE = "3";

0 commit comments

Comments
 (0)