Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: pkg/analysis_server/lib/src/services/refactoring/naming_conventions.dart

Issue 725143004: Format and sort analyzer and analysis_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/services/refactoring/naming_conventions.dart
diff --git a/pkg/analysis_server/lib/src/services/refactoring/naming_conventions.dart b/pkg/analysis_server/lib/src/services/refactoring/naming_conventions.dart
index 51fb74cffd8f052e21cb5d598e2b317e7bd01eea..2f27c12eed44d05b8e5c7f5a16979cfc938beff9 100644
--- a/pkg/analysis_server/lib/src/services/refactoring/naming_conventions.dart
+++ b/pkg/analysis_server/lib/src/services/refactoring/naming_conventions.dart
@@ -102,11 +102,10 @@ RefactoringStatus validateLibraryName(String name) {
// check identifiers
List<String> identifiers = name.split('.');
for (String identifier in identifiers) {
- RefactoringStatus status =
- _validateIdentifier(
- identifier,
- "Library name identifier",
- "a lowercase letter or underscore");
+ RefactoringStatus status = _validateIdentifier(
+ identifier,
+ "Library name identifier",
+ "a lowercase letter or underscore");
if (!status.isOK) {
return status;
}
« no previous file with comments | « pkg/analysis_server/lib/src/services/index/store/collection.dart ('k') | pkg/analysis_server/lib/src/socket_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698