blob: d447542588c5108cac55b511404d27b09d738791 [file] [log] [blame]
package com.android.systemui.power;
import android.util.Log;
public class EnhancedEstimatesImpl implements EnhancedEstimates {
@Override
public boolean isHybridNotificationEnabled() {
return false;
}
@Override
public Estimate getEstimate() {
return null;
}
}