Bump checkstyle to 6.16

Due to fixes and improvements, some new checkstyle changes are due.
This commit is contained in:
Daniel Martí 2016-02-28 14:30:43 +00:00
parent d061dafcd7
commit a203545e48
5 changed files with 5 additions and 6 deletions

View File

@ -192,7 +192,7 @@ android {
} }
checkstyle { checkstyle {
toolVersion = '6.15' toolVersion = '6.16'
} }
task checkstyle(type: Checkstyle) { task checkstyle(type: Checkstyle) {

View File

@ -110,7 +110,7 @@ class DBHelper extends SQLiteOpenHelper {
private final Context context; private final Context context;
public DBHelper(Context context) { DBHelper(Context context) {
super(context, DATABASE_NAME, null, DB_VERSION); super(context, DATABASE_NAME, null, DB_VERSION);
this.context = context; this.context = context;
} }

View File

@ -23,7 +23,7 @@ import java.util.Map;
* TODO: The content providers are not thread safe, so it is possible we will be writing * TODO: The content providers are not thread safe, so it is possible we will be writing
* to the database at the same time we respond to a broadcasted intent. * to the database at the same time we respond to a broadcasted intent.
*/ */
public class InstalledAppCacheUpdater { public final class InstalledAppCacheUpdater {
private static final String TAG = "InstalledAppCache"; private static final String TAG = "InstalledAppCache";

View File

@ -774,8 +774,7 @@ public class SwapWorkflowActivity extends AppCompatActivity {
public void run() { public void run() {
new SwapDebug().logStatus(); new SwapDebug().logStatus();
} }
}, }, 1000
1000
); );
} }
} }

View File

@ -36,7 +36,7 @@ android {
} }
checkstyle { checkstyle {
toolVersion = '6.15' toolVersion = '6.16'
} }
task checkstyle(type: Checkstyle) { task checkstyle(type: Checkstyle) {