@@ -87,7 +87,7 @@ public void actionPerformed(@NotNull AnActionEvent e) {
87
87
ContentEntry [] entries = contentEntries ;
88
88
int length = contentEntries .length ;
89
89
90
- for (int i = 0 ; i < length ; ++i ) {
90
+ for (int i = 0 ; i < length ; ++i ) {
91
91
ContentEntry entry = entries [i ];
92
92
VirtualFile entryFile = entry .getFile ();
93
93
if (entryFile != null && VfsUtilCore .isAncestor (entryFile , project .getBaseDir (), false )) {
@@ -215,7 +215,7 @@ private static boolean isFileInsideModule(@NotNull VirtualFile magentoFile, @Not
215
215
VirtualFile [] roots = contentRoots ;
216
216
int length = contentRoots .length ;
217
217
218
- for (int i = 0 ; i < length ; ++i ) {
218
+ for (int i = 0 ; i < length ; ++i ) {
219
219
VirtualFile root = roots [i ];
220
220
if (VfsUtilCore .isAncestor (root , magentoFile , false )) {
221
221
return true ;
@@ -237,7 +237,7 @@ public static void notifyGlobally(@Nullable Project project, String title, Strin
237
237
Function [] functions = actions ;
238
238
int length = actions .length ;
239
239
240
- for (int i = 0 ; i < length ; ++i ) {
240
+ for (int i = 0 ; i < length ; ++i ) {
241
241
Function <Notification , AnAction > generator = functions [i ];
242
242
notification .addAction (generator .apply (notification ));
243
243
}
0 commit comments