Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ccad36f authored by Amit Kumar's avatar Amit Kumar
Browse files

Remove unnecessary logs

parent df4cd2c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
      </value>
    </option>
  </component>
  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
    <output url="file://$PROJECT_DIR$/build/classes" />
  </component>
  <component name="ProjectType">
+0 −1
Original line number Diff line number Diff line
@@ -170,7 +170,6 @@ public class CustomAnalogClock extends View {
        final int w = (int) (mDialWidth * sizeScale);
        final int h = (int) (mDialHeight * sizeScale);

        Log.i(TAG, "w="+w+", h="+h+", aw="+availW+", ah="+availH);
        boolean scaled = false;

        if (availW < w || availH < h) {
+1 −7
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ public class DesktopActivity extends AppCompatActivity {

    private Animation wobbleAnimation;
    private Animation wobbleReverseAnimation;
    private static String TAG = "BLISSLAUNCHER_HOME";

    private int scrollCorner;

    private Storage storage;
@@ -302,7 +302,6 @@ public class DesktopActivity extends AppCompatActivity {
        double y = Math.pow(mHeightPixels / dm.ydpi, 2);
        double screenInches = Math.sqrt(x + y);

        Log.i(TAG, "prepareResources: " + screenInches);
        if (screenInches <= 4.5) {
            nRows = 4;
        } else if (screenInches <= 5.5) {
@@ -577,7 +576,6 @@ public class DesktopActivity extends AppCompatActivity {
     * Re-creates the launcher layout based on the data stored in the shared-preferences.
     */
    private void createUIFromStorage() {
        Log.i(TAG, "createUIFromStorage: called");
        Storage.StorageData storageData = storage.load();
        int nPages = storageData.getNPages();
        pages = new ArrayList<>();
@@ -802,7 +800,6 @@ public class DesktopActivity extends AppCompatActivity {
        layoutParams.rightMargin = appIconMargin;

        appIconWidth = iconWidth - 2 * appIconMargin;
        Log.i(TAG, "appIconWidth " + appIconWidth);
        if (app.isClock()) {
            final CustomAnalogClock analogClock = v.findViewById(R.id.icon_clock);
            analogClock.setVisibility(View.VISIBLE);
@@ -1151,8 +1148,6 @@ public class DesktopActivity extends AppCompatActivity {

            @Override
            public boolean onDrag(View view, DragEvent dragEvent) {
                Log.d(TAG, "onDrag() called with: view = [" + view + "], dragEvent = [" + dragEvent
                        + "]");
                if (dragEvent.getAction() == DragEvent.ACTION_DRAG_LOCATION) {

                    lastX = dragEvent.getX();
@@ -1284,7 +1279,6 @@ public class DesktopActivity extends AppCompatActivity {
                        // Drop functionality when the folder window container
                        // is not being shown -- default
                        if (!folderInterest) {
                            Log.i(TAG, "onDrag: here");
                            if (movingApp.getParent() == null) {
                                if (view instanceof HorizontalPager) {
                                    GridLayout gridLayout = pages.get(getCurrentAppsPageNumber());