Removed sonar.

This commit is contained in:
Amine Bou
2018-01-11 20:53:17 +01:00
parent 2c8902d404
commit b8d234c415
5 changed files with 3 additions and 7 deletions

View File

@ -32,8 +32,6 @@ def versionNameFromGit() {
return versionName
}
apply plugin: 'org.sonarqube'
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

View File

@ -619,7 +619,7 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
)
)
val resultType = object : TypeToken<DrawerData>() {}.type //NOSONAR
val resultType = object : TypeToken<DrawerData>() {}.type
Reservoir.getAsync(
"drawerData", resultType, object : ReservoirGetCallback<DrawerData> {
override fun onSuccess(maybeDrawerData: DrawerData?) {

View File

@ -24,7 +24,7 @@ import com.ftinc.scoop.Scoop;
* A {@link PreferenceActivity} which implements and proxies the necessary calls
* to be used with AppCompat.
*/
public abstract class AppCompatPreferenceActivity extends PreferenceActivity { //NOSONAR
public abstract class AppCompatPreferenceActivity extends PreferenceActivity {
private AppCompatDelegate mDelegate;

View File

@ -44,7 +44,7 @@ import com.ftinc.scoop.ui.ScoopSettingsActivity;
* href="http://developer.android.com/guide/topics/ui/settings.html">Settings
* API Guide</a> for more information on developing a Settings UI.
*/
public class SettingsActivity extends AppCompatPreferenceActivity { //NOSONAR
public class SettingsActivity extends AppCompatPreferenceActivity {
/**
* A preference value change listener that updates the preference's summary
* to reflect its new value.