summaryrefslogtreecommitdiff
path: root/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesUtil.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesUtil.java')
-rw-r--r--platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesUtil.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesUtil.java b/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesUtil.java
index 02c98d83a82c..1521f72e0d61 100644
--- a/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesUtil.java
+++ b/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesUtil.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2009 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.
@@ -18,12 +18,13 @@ package com.intellij.find.findUsages;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.NotNull;
+import org.jetbrains.annotations.Nullable;
public class FindUsagesUtil {
private FindUsagesUtil() {
}
- public static boolean isSearchForTextOccurrencesAvailable(@NotNull PsiElement element, boolean isSingleFile, FindUsagesHandler handler) {
+ public static boolean isSearchForTextOccurrencesAvailable(@NotNull PsiElement element, boolean isSingleFile, @Nullable FindUsagesHandler handler) {
return !isSingleFile && handler != null && handler.isSearchForTextOccurencesAvailable(element, isSingleFile);
}
}