/*
- * 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.
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);
}
}
});