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

Commit b635d590 authored by Hunter Knepshield's avatar Hunter Knepshield Committed by Automerger Merge Worker
Browse files

Merge "Forward IBinder#dump to CarrierService#dump" am: b2a7f082 am: f8e72f46

Change-Id: I51c8d7d8f578c329f357750df759a92451d60227
parents 54c28c57 f8e72f46
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -25,6 +25,9 @@ import android.os.ResultReceiver;
import android.telephony.TelephonyRegistryManager;
import android.util.Log;

import java.io.FileDescriptor;
import java.io.PrintWriter;

/**
 * A service that exposes carrier-specific functionality to the system.
 * <p>
@@ -156,5 +159,10 @@ public abstract class CarrierService extends Service {
                result.send(RESULT_ERROR, null);
            }
        }

        @Override
        protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
            CarrierService.this.dump(fd, pw, args);
        }
    }
}