summaryrefslogtreecommitdiff
path: root/Source/Core/CommandLineOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/CommandLineOptions.cs')
-rw-r--r--Source/Core/CommandLineOptions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index 1c7f40d4..2be1cdf7 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -1700,7 +1700,7 @@ namespace Microsoft.Boogie {
// no preference
return true;
}
- return ProcsToCheck.Any(s => 0 <= methodFullname.IndexOf(s));
+ return ProcsToCheck.Contains(methodFullname);
}
public virtual StringCollection ParseNamedArgumentList(string argList) {