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

Commit d4422213 authored by Narayan Kamath's avatar Narayan Kamath Committed by android-build-merger
Browse files

am 7d019394: am 712a0205: Merge "Correct a mistyped word "MSG_SET_CLEINT" to "MSG_SET_CLIENT""

automerge: 7e6ae353

* commit '7e6ae353':
  Correct a mistyped word "MSG_SET_CLEINT" to "MSG_SET_CLIENT"
parents 2021082b 7e6ae353
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -386,7 +386,7 @@ public abstract class PrintService extends Service {

            @Override
            public void setClient(IPrintServiceClient client) {
                mHandler.obtainMessage(ServiceHandler.MSG_SET_CLEINT, client)
                mHandler.obtainMessage(ServiceHandler.MSG_SET_CLIENT, client)
                        .sendToTarget();
            }

@@ -414,7 +414,7 @@ public abstract class PrintService extends Service {
        public static final int MSG_STOP_PRINTER_STATE_TRACKING = 7;
        public static final int MSG_ON_PRINTJOB_QUEUED = 8;
        public static final int MSG_ON_REQUEST_CANCEL_PRINTJOB = 9;
        public static final int MSG_SET_CLEINT = 10;
        public static final int MSG_SET_CLIENT = 10;

        public ServiceHandler(Looper looper) {
            super(looper, null, true);
@@ -528,9 +528,9 @@ public abstract class PrintService extends Service {
                    onPrintJobQueued(new PrintJob(printJobInfo, mClient));
                } break;

                case MSG_SET_CLEINT: {
                case MSG_SET_CLIENT: {
                    if (DEBUG) {
                        Log.i(LOG_TAG, "MSG_SET_CLEINT "
                        Log.i(LOG_TAG, "MSG_SET_CLIENT "
                                + getPackageName());
                    }
                    mClient = (IPrintServiceClient) message.obj;