diff options
| author | 2024-01-30 23:28:18 +0000 | |
|---|---|---|
| committer | 2024-02-01 18:43:52 +0000 | |
| commit | b201dcea68e616e323174e26d8d0ca3a2dcae46d (patch) | |
| tree | aef1944f8acc27a8567200494e4b8b6db825080b | |
| parent | 4387c4e976a5197671f2f6d1bf49d2370560d9a5 (diff) | |
Escaping a curly brace to fix doc issue
The generated docs contained a pair of curly braces, like:
{{, 30}, {, 60}}
This is valid Javadoc and generated a valid HTMl output file, but the
file isn't publishable on DAC, because Devsite (our publishing engine)
interprets pairs of curly braces as a Jinja directive.
Fixed the issue by replacing one pair of braces with { / }
Built the docs with this change, and verified that the output can be
staged.
Change-Id: If579f03f4f99a9ba2e5219b98fa1eba4c4d47a1f
Test: go/abtd/run/L29600030001717486
Bug: 323000632
| -rw-r--r-- | core/java/android/hardware/camera2/CameraCharacteristics.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/hardware/camera2/CameraCharacteristics.java b/core/java/android/hardware/camera2/CameraCharacteristics.java index 665d8d280bc6..47f5b4c3a5f6 100644 --- a/core/java/android/hardware/camera2/CameraCharacteristics.java +++ b/core/java/android/hardware/camera2/CameraCharacteristics.java @@ -5313,7 +5313,7 @@ public final class CameraCharacteristics extends CameraMetadata<CameraCharacteri * </code></pre> * <ul> * <li>VIDEO_STABILIZATION_MODES: {OFF, PREVIEW}</li> - * <li>AE_TARGET_FPS_RANGE: {{<em>, 30}, {</em>, 60}}</li> + * <li>AE_TARGET_FPS_RANGE: {{<em>, 30}, {</em>, 60}}</li> * <li>DYNAMIC_RANGE_PROFILE: {STANDARD, HLG10}</li> * </ul> * <p>This key is available on all devices.</p> |