Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit 8e64192

Browse files
jineshfrancsjafu888
authored andcommitted
Updated TAG constant
1 parent 9cb4314 commit 8e64192

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

demoProjects/Drag2D/app/src/main/java/android/support/drag2d/DragCardActivity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ public class DragCardActivity extends AppCompatActivity {
8181
MaterialEasing.EASE_OUT_ELASTIC,
8282
MaterialEasing.EASE_OUT_BOUNCE
8383
};
84-
84+
private static final String TAG = "MAIN";
8585

8686
@Override
8787
protected void onCreate(Bundle savedInstanceState) {
8888
super.onCreate(savedInstanceState);
8989
int orientation = getResources().getConfiguration().orientation;
90-
Log.v("MAIN","orientation = "+orientation);
90+
Log.v(TAG,"orientation = "+orientation);
9191

9292
requestWindowFeature(Window.FEATURE_ACTION_BAR);
9393
LinearLayout topCol = new LinearLayout(this);
@@ -363,4 +363,4 @@ public static float softClamp(float x, float min, float max) {
363363
return (max + min) / 2 + halfWidth * (float) (1 / (1 + Math.exp(-x)) - 0.5f);
364364

365365
}
366-
}
366+
}

0 commit comments

Comments
 (0)