Removes debug logging.
This commit is contained in:
		| @@ -13,14 +13,12 @@ import androidx.navigation.ui.NavigationUI; | ||||
| import com.google.android.material.bottomnavigation.BottomNavigationView; | ||||
| import com.majinnaibu.monstercards.init.AppCenterInitializer; | ||||
| import com.majinnaibu.monstercards.init.FlipperInitializer; | ||||
| import com.majinnaibu.monstercards.utils.Logger; | ||||
|  | ||||
| public class MainActivity extends AppCompatActivity { | ||||
|  | ||||
|     @Override | ||||
|     public boolean onOptionsItemSelected(@NonNull MenuItem item) { | ||||
|         if (item.getItemId() == android.R.id.home) { | ||||
|             Logger.logDebug("Home selected (in MainActivity)"); | ||||
|             getOnBackPressedDispatcher().onBackPressed(); | ||||
|             return true; | ||||
|         } | ||||
|   | ||||
| @@ -13,7 +13,6 @@ import androidx.annotation.Nullable; | ||||
| import androidx.constraintlayout.widget.ConstraintLayout; | ||||
|  | ||||
| import com.majinnaibu.monstercards.R; | ||||
| import com.majinnaibu.monstercards.utils.Logger; | ||||
|  | ||||
| import java.util.Objects; | ||||
|  | ||||
| @@ -74,7 +73,6 @@ public class Stepper extends ConstraintLayout { | ||||
|     public void setValue(int value) { | ||||
|         int oldValue = this.mCurrentValue; | ||||
|         int newValue = Math.min(mMaxValue, Math.max(mMinValue, value)); | ||||
|         Logger.logDebug(String.format("Setting stepper value value: %d, oldValue: %d, newValue: %d", value, oldValue, newValue)); | ||||
|         if (newValue != oldValue) { | ||||
|             this.mCurrentValue = newValue; | ||||
|             if (mOnValueChangeListener != null) { | ||||
|   | ||||
| @@ -61,7 +61,6 @@ public class LibraryFragment extends MCFragment { | ||||
|                         .subscribe(new DisposableCompletableObserver() { | ||||
|                             @Override | ||||
|                             public void onComplete() { | ||||
|                                 Logger.logDebug("deleted"); | ||||
|                             } | ||||
|  | ||||
|                             @Override | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tom Hicks
						Tom Hicks