diff --git a/api/current.txt b/api/current.txt
index f62839e2d5414..e0c45e05c2754 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -15777,7 +15777,7 @@ package android.hardware.camera2 {
method public java.util.List The properties describing a
@@ -450,23 +452,20 @@ public final class CameraCharacteristics extends CameraMetadata
The list returned is not modifiable, so any attempts to modify it will throw + *
The set returned is not modifiable, so any attempts to modify it will throw * a {@code UnsupportedOperationException}.
* - *Each physical camera id is only listed once in the list. The order of the keys - * is undefined.
- * - * @return List of physical camera ids for this logical camera device. + * @return Set of physical camera ids for this logical camera device. */ @NonNull - public ListThis method can be called for logical camera devices, which are devices that have * REQUEST_AVAILABLE_CAPABILITIES_LOGICAL_MULTI_CAMERA capability and calls to - * {@link CameraCharacteristics#getPhysicalCameraIds} return a non-empty list of + * {@link CameraCharacteristics#getPhysicalCameraIds} return a non-empty set of * physical devices that are backing the logical camera. The camera Id included in the * 'physicalCameraId' argument selects an individual physical device that will receive * the customized capture request field.
diff --git a/core/java/android/hardware/camera2/TotalCaptureResult.java b/core/java/android/hardware/camera2/TotalCaptureResult.java index 0be45a0c9779f..4e20cb8d129ea 100644 --- a/core/java/android/hardware/camera2/TotalCaptureResult.java +++ b/core/java/android/hardware/camera2/TotalCaptureResult.java @@ -138,7 +138,7 @@ public final class TotalCaptureResult extends CaptureResult { * *This function can be called for logical multi-camera devices, which are devices that have * REQUEST_AVAILABLE_CAPABILITIES_LOGICAL_MULTI_CAMERA capability and calls to {@link - * CameraCharacteristics#getPhysicalCameraIds} return a non-empty list of physical devices that + * CameraCharacteristics#getPhysicalCameraIds} return a non-empty set of physical devices that * are backing the logical camera.
* *If one or more streams from the underlying physical cameras were requested by the