Merge "Restrict all jobs when the device is too hot." into sc-dev

This commit is contained in:
Kweku Adams
2021-07-14 15:38:19 +00:00
committed by Android (Google) Code Review

View File

@@ -59,7 +59,7 @@ public class ThermalStatusRestriction extends JobRestriction {
@Override
public boolean isJobRestricted(JobStatus job) {
return mIsThermalRestricted && job.hasConnectivityConstraint();
return mIsThermalRestricted;
}
@Override