Merge "Forward IBinder#dump to CarrierService#dump"

This commit is contained in:
Hunter Knepshield
2020-03-23 20:21:13 +00:00
committed by Gerrit Code Review

View File

@@ -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);
}
}
}