Merge "Fixed indentation in setProfileName method" into mnc-dev

This commit is contained in:
Fyodor Kupolov
2015-05-27 23:56:05 +00:00
committed by Android (Google) Code Review

View File

@@ -3071,12 +3071,12 @@ public class DevicePolicyManager {
public void setProfileName(ComponentName who, String profileName) { public void setProfileName(ComponentName who, String profileName) {
if (mService != null) { if (mService != null) {
try { try {
mService.setProfileName(who, profileName); mService.setProfileName(who, profileName);
} catch (RemoteException e) { } catch (RemoteException e) {
Log.w(TAG, "Failed talking with device policy service", e); Log.w(TAG, "Failed talking with device policy service", e);
}
} }
} }
}
/** /**
* Used to determine if a particular package is registered as the profile owner for the * Used to determine if a particular package is registered as the profile owner for the