Cleanup (formatting)
authorRoman Shevchenko <roman.shevchenko@jetbrains.com>
Mon, 26 Jan 2015 11:44:59 +0000 (14:44 +0300)
committerRoman Shevchenko <roman.shevchenko@jetbrains.com>
Mon, 26 Jan 2015 11:44:59 +0000 (14:44 +0300)
platform/platform-impl/src/com/intellij/openapi/project/impl/ProjectManagerImpl.java

index 0427305089096d1d3d2ba36135c653c3305e90c2..4bcc672fe8ad162afa074848bc3ef4adba51118d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000-2014 JetBrains s.r.o.
+ * Copyright 2000-2015 JetBrains s.r.o.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -515,10 +515,9 @@ public class ProjectManagerImpl extends ProjectManagerEx implements PersistentSt
       startupManager.runWhenProjectIsInitialized(new Runnable() {
         @Override
         public void run() {
-          final TrackingPathMacroSubstitutor macroSubstitutor =
-            ((ProjectEx)project).getStateStore().getStateStorageManager().getMacroSubstitutor();
-          if (macroSubstitutor != null) {
-            StorageUtil.notifyUnknownMacros(macroSubstitutor, project, null);
+          TrackingPathMacroSubstitutor substitutor = ((ProjectEx)project).getStateStore().getStateStorageManager().getMacroSubstitutor();
+          if (substitutor != null) {
+            StorageUtil.notifyUnknownMacros(substitutor, project, null);
           }
         }
       });