[PATCH] D60203: Updating Chromium's Java import order
Phabricator via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 4 07:27:59 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rC357700: Updating Chromium's Java import order (authored by nico, committed by ).
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60203/new/
https://reviews.llvm.org/D60203
Files:
lib/Format/Format.cpp
Index: lib/Format/Format.cpp
===================================================================
--- lib/Format/Format.cpp
+++ lib/Format/Format.cpp
@@ -898,9 +898,16 @@
// See styleguide for import groups:
// https://chromium.googlesource.com/chromium/src/+/master/styleguide/java/java.md#Import-Order
ChromiumStyle.JavaImportGroups = {
- "android", "com", "dalvik",
- "junit", "org", "com.google.android.apps.chrome",
- "org.chromium", "java", "javax",
+ "android",
+ "androidx",
+ "com",
+ "dalvik",
+ "junit",
+ "org",
+ "com.google.android.apps.chrome",
+ "org.chromium",
+ "java",
+ "javax",
};
ChromiumStyle.SortIncludes = true;
} else if (Language == FormatStyle::LK_JavaScript) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60203.193710.patch
Type: text/x-patch
Size: 822 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190404/5543a90b/attachment-0001.bin>
More information about the cfe-commits
mailing list