diff options
author | 2022-08-16 10:27:33 -0700 | |
---|---|---|
committer | 2022-08-17 10:43:13 -0700 | |
commit | d079e0b2708ce0f4cce470db929f28dd8d2b0e80 (patch) | |
tree | e8cdb4a59bd88411a262a1d91bd75def56cc4de2 /androidmk | |
parent | 852d0c48593fb2a17d301d7274edac907e8e194f (diff) |
Reformat build/soong for go 1.19
Test: none
Change-Id: I132368f0fcbdb5ea088b5b84dbe4ccfdd9e94cad
Diffstat (limited to 'androidmk')
-rw-r--r-- | androidmk/androidmk/androidmk.go | 6 | ||||
-rw-r--r-- | androidmk/parser/make_strings.go | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/androidmk/androidmk/androidmk.go b/androidmk/androidmk/androidmk.go index aaafdc758..2e8810fe8 100644 --- a/androidmk/androidmk/androidmk.go +++ b/androidmk/androidmk/androidmk.go @@ -421,9 +421,9 @@ func makeVariableToBlueprint(file *bpFile, val *mkparser.MakeString, // For example, if prefix is "foo" and name is "bar" with a value of "baz", then // the following variable will be generated: // -// foo { -// bar: "baz" -// } +// foo { +// bar: "baz" +// } // // If prefix is the empty string and name is "foo" with a value of "bar", the // following variable will be generated (if it is a property): diff --git a/androidmk/parser/make_strings.go b/androidmk/parser/make_strings.go index 8afbe7edc..be3685916 100644 --- a/androidmk/parser/make_strings.go +++ b/androidmk/parser/make_strings.go @@ -38,10 +38,10 @@ import ( // For example, "$(FOO)/bar/baz" will be represented as the // following lists: // -// { -// Strings: ["", "/bar/baz"], -// Variables: ["FOO"] -// } +// { +// Strings: ["", "/bar/baz"], +// Variables: ["FOO"] +// } type MakeString struct { StringPos Pos Strings []string |