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

Commit be38fec7 authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Make FingerprintService/FaceService less chatty

Bug: 183755255
Test: Builds
Change-Id: I2717748a845bb67d22203138bfcaa0003579209e
parent 15e1d3f7
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -167,12 +167,7 @@ public class FaceService extends SystemService implements BiometricServiceCallba
                String opPackageName) {
            Utils.checkPermission(getContext(), MANAGE_BIOMETRIC);

            final List<FaceSensorPropertiesInternal> properties =
                    FaceService.this.getSensorProperties();

            Slog.d(TAG, "Retrieved sensor properties for: " + opPackageName
                    + ", sensors: " + properties.size());
            return properties;
            return FaceService.this.getSensorProperties();
        }

        @Override // Binder call
+1 −6
Original line number Diff line number Diff line
@@ -146,12 +146,7 @@ public class FingerprintService extends SystemService implements BiometricServic
                Utils.checkPermission(getContext(), TEST_BIOMETRIC);
            }

            final List<FingerprintSensorPropertiesInternal> properties =
                    FingerprintService.this.getSensorProperties();

            Slog.d(TAG, "Retrieved sensor properties for: " + opPackageName
                    + ", sensors: " + properties.size());
            return properties;
            return FingerprintService.this.getSensorProperties();
        }

        @Override