summaryrefslogtreecommitdiff
path: root/platform/projectModel-impl/src/com/intellij/openapi/components/PathMacroSubstitutor.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/projectModel-impl/src/com/intellij/openapi/components/PathMacroSubstitutor.java')
-rw-r--r--platform/projectModel-impl/src/com/intellij/openapi/components/PathMacroSubstitutor.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/projectModel-impl/src/com/intellij/openapi/components/PathMacroSubstitutor.java b/platform/projectModel-impl/src/com/intellij/openapi/components/PathMacroSubstitutor.java
index c79802533a1d..bcffa0bc34ee 100644
--- a/platform/projectModel-impl/src/com/intellij/openapi/components/PathMacroSubstitutor.java
+++ b/platform/projectModel-impl/src/com/intellij/openapi/components/PathMacroSubstitutor.java
@@ -16,6 +16,7 @@
package com.intellij.openapi.components;
import org.jdom.Element;
+import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public interface PathMacroSubstitutor {
@@ -23,7 +24,7 @@ public interface PathMacroSubstitutor {
String collapsePath(@Nullable String path);
- void expandPaths(Element element);
+ void expandPaths(@NotNull Element element);
- void collapsePaths(Element element);
+ void collapsePaths(@NotNull Element element);
}