summaryrefslogtreecommitdiff
path: root/platform/projectModel-api/src/com/intellij/openapi/application/PathMacros.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/projectModel-api/src/com/intellij/openapi/application/PathMacros.java')
-rw-r--r--platform/projectModel-api/src/com/intellij/openapi/application/PathMacros.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/platform/projectModel-api/src/com/intellij/openapi/application/PathMacros.java b/platform/projectModel-api/src/com/intellij/openapi/application/PathMacros.java
index 160aed545b03..fac4e5e9edb1 100644
--- a/platform/projectModel-api/src/com/intellij/openapi/application/PathMacros.java
+++ b/platform/projectModel-api/src/com/intellij/openapi/application/PathMacros.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2012 JetBrains s.r.o.
+ * Copyright 2000-2014 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.
@@ -15,15 +15,15 @@
*/
package com.intellij.openapi.application;
+import com.intellij.openapi.components.ServiceManager;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
import java.util.Set;
public abstract class PathMacros {
-
public static PathMacros getInstance() {
- return ApplicationManager.getApplication().getComponent(PathMacros.class);
+ return ServiceManager.getService(PathMacros.class);
}
public abstract Set<String> getAllMacroNames();
@@ -33,9 +33,7 @@ public abstract class PathMacros {
public abstract void setMacro(String name, String value);
/**
- * Obsolete macros that are to be removed gently from the project files. They can be read, but not written again. Not persisted.
- * @param name
- * @param value
+ * Obsolete macros that are to be removed gently from the project files. They can be read, but not written again. Not persisted
*/
public abstract void addLegacyMacro(@NotNull String name, @NotNull String value);