From dc5f6e451e0111ac99c1ae530ad3a93448035378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Kongstad?= Date: Wed, 26 Jul 2023 14:08:54 +0200 Subject: [PATCH] AconfigDemo: associate each flag with exactly one bug aconfig now requires that each flag is associated with exactly one bug. Update aconfig_demo_flags.aconfig accordingly. Also standardize use of whitespace. Bug: 293156797 Test: presubmit Change-Id: I3e10f7055ffb2776fbe825f0902b735ca4674b58 --- .../AconfigDemo/aconfig_demo_flags.aconfig | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/samples/AconfigDemo/aconfig_demo_flags.aconfig b/samples/AconfigDemo/aconfig_demo_flags.aconfig index 26e726b0b..2a3fb999f 100644 --- a/samples/AconfigDemo/aconfig_demo_flags.aconfig +++ b/samples/AconfigDemo/aconfig_demo_flags.aconfig @@ -1,34 +1,36 @@ package: "com.example.android.aconfig.demo.flags" flag { - name: "append_injected_content" - namespace: "aconfig_demo_ns" - description: "This flag controls injected content" - bug: "287644619" + name: "append_injected_content" + namespace: "aconfig_demo_ns" + description: "This flag controls injected content" + bug: "287644619" } flag { - name: "append_static_content" - namespace: "aconfig_demo_ns" - description: "This flag controls static content" + name: "append_static_content" + namespace: "aconfig_demo_ns" + description: "This flag controls static content" + bug: "287644619" } flag { name: "awesome_flag_1" namespace: "test" description: "A very awesome flag for testing purposes." + bug: "287644619" } flag { name: "awesome_flag_2" namespace: "test" description: "Another awesome flag for testing purposes." + bug: "287644619" } flag { - name: "third_flag" - namespace: "configuration" - description: "This flag controls static content" - bug: "287644619" - bug: "280833463" + name: "third_flag" + namespace: "configuration" + description: "This flag controls static content" + bug: "287644619" }