From 4a68b1b0c14509f84754d565a65b052d33e635dc Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 10 Sep 2009 14:55:59 +0400 Subject: [PATCH] typo --- .../codeInspection/ex/DescriptorProviderInspection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/lang-impl/src/com/intellij/codeInspection/ex/DescriptorProviderInspection.java b/platform/lang-impl/src/com/intellij/codeInspection/ex/DescriptorProviderInspection.java index d0427a297456..d084d215e5c0 100644 --- a/platform/lang-impl/src/com/intellij/codeInspection/ex/DescriptorProviderInspection.java +++ b/platform/lang-impl/src/com/intellij/codeInspection/ex/DescriptorProviderInspection.java @@ -44,10 +44,10 @@ public abstract class DescriptorProviderInspection extends InspectionTool implem addProblemElement(refElement, true, descriptions); } - protected void addProblemElement(RefEntity refElement, boolean filterSuppresssed, CommonProblemDescriptor... descriptions) { + protected void addProblemElement(RefEntity refElement, boolean filterSuppressed, CommonProblemDescriptor... descriptions) { if (refElement == null) return; if (descriptions == null || descriptions.length == 0) return; - if (filterSuppresssed) { + if (filterSuppressed) { if (ourOutputPath == null || !(this instanceof LocalInspectionToolWrapper)) { CommonProblemDescriptor[] problems = getProblemElements().get(refElement); if (problems == null) {