mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Small thing, make log TAGs consistent
git-svn-id: https://zxing.googlecode.com/svn/trunk@1275 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
3423422956
commit
0413ee8d0b
|
@ -45,7 +45,7 @@ import java.util.regex.Pattern;
|
||||||
*/
|
*/
|
||||||
final class CameraManager {
|
final class CameraManager {
|
||||||
|
|
||||||
private static final String TAG = "CameraManager";
|
private static final String TAG = CameraManager.class.getSimpleName();
|
||||||
|
|
||||||
private static final int MIN_FRAME_WIDTH = 240;
|
private static final int MIN_FRAME_WIDTH = 240;
|
||||||
private static final int MIN_FRAME_HEIGHT = 240;
|
private static final int MIN_FRAME_HEIGHT = 240;
|
||||||
|
|
|
@ -78,7 +78,8 @@ import java.util.regex.Pattern;
|
||||||
*/
|
*/
|
||||||
public final class CaptureActivity extends Activity implements SurfaceHolder.Callback {
|
public final class CaptureActivity extends Activity implements SurfaceHolder.Callback {
|
||||||
|
|
||||||
private static final String TAG = "CaptureActivity";
|
private static final String TAG = CaptureActivity.class.getSimpleName();
|
||||||
|
|
||||||
private static final Pattern COMMA_PATTERN = Pattern.compile(",");
|
private static final Pattern COMMA_PATTERN = Pattern.compile(",");
|
||||||
|
|
||||||
private static final int SHARE_ID = Menu.FIRST;
|
private static final int SHARE_ID = Menu.FIRST;
|
||||||
|
|
|
@ -43,8 +43,9 @@ import java.util.Vector;
|
||||||
*/
|
*/
|
||||||
final class DecodeThread extends Thread {
|
final class DecodeThread extends Thread {
|
||||||
|
|
||||||
|
private static final String TAG = DecodeThread.class.getSimpleName();
|
||||||
|
|
||||||
public static final String BARCODE_BITMAP = "barcode_bitmap";
|
public static final String BARCODE_BITMAP = "barcode_bitmap";
|
||||||
private static final String TAG = "DecodeThread";
|
|
||||||
|
|
||||||
private Handler handler;
|
private Handler handler;
|
||||||
private final CaptureActivity activity;
|
private final CaptureActivity activity;
|
||||||
|
|
|
@ -35,7 +35,7 @@ import java.lang.reflect.Method;
|
||||||
*/
|
*/
|
||||||
final class FlashlightManager {
|
final class FlashlightManager {
|
||||||
|
|
||||||
private static final String TAG = FlashlightManager.class.getName();
|
private static final String TAG = FlashlightManager.class.getSimpleName();
|
||||||
|
|
||||||
private static Object iHardwareService;
|
private static Object iHardwareService;
|
||||||
private static Method setFlashEnabledMethod;
|
private static Method setFlashEnabledMethod;
|
||||||
|
|
|
@ -37,7 +37,7 @@ import android.widget.Button;
|
||||||
*/
|
*/
|
||||||
public final class HelpActivity extends Activity {
|
public final class HelpActivity extends Activity {
|
||||||
|
|
||||||
private static final String TAG = HelpActivity.class.getName();
|
private static final String TAG = HelpActivity.class.getSimpleName();
|
||||||
|
|
||||||
private static final String[] BUGGY_MODEL_SUBSTRINGS = {"Behold II", "Pulse", "Geeksphone"};
|
private static final String[] BUGGY_MODEL_SUBSTRINGS = {"Behold II", "Pulse", "Geeksphone"};
|
||||||
private static final Uri BUGGY_URI =
|
private static final Uri BUGGY_URI =
|
||||||
|
|
|
@ -60,7 +60,8 @@ import com.google.zxing.client.android.AndroidHttpClient;
|
||||||
*/
|
*/
|
||||||
public final class SearchBookContentsActivity extends Activity {
|
public final class SearchBookContentsActivity extends Activity {
|
||||||
|
|
||||||
private static final String TAG = "SearchBookContents";
|
private static final String TAG = SearchBookContentsActivity.class.getSimpleName();
|
||||||
|
|
||||||
private static final String USER_AGENT = "ZXing (Android)";
|
private static final String USER_AGENT = "ZXing (Android)";
|
||||||
private static final Pattern TAG_PATTERN = Pattern.compile("\\<.*?\\>");
|
private static final Pattern TAG_PATTERN = Pattern.compile("\\<.*?\\>");
|
||||||
private static final Pattern LT_ENTITY_PATTERN = Pattern.compile("<");
|
private static final Pattern LT_ENTITY_PATTERN = Pattern.compile("<");
|
||||||
|
|
Loading…
Reference in a new issue