diff --git a/dsymbol b/dsymbol index ceea154..62d9030 160000 --- a/dsymbol +++ b/dsymbol @@ -1 +1 @@ -Subproject commit ceea154b0047f71e4ffec224096ce87015578a8a +Subproject commit 62d9030ae12ae02b2ba247c500502434facc2ac8 diff --git a/libddoc b/libddoc index d50190b..eb582ed 160000 --- a/libddoc +++ b/libddoc @@ -1 +1 @@ -Subproject commit d50190b7e33b11d7fec05e504549f0f285bd2232 +Subproject commit eb582ed53d8cee3933140c9593c6401e6b9ac1d4 diff --git a/libdparse b/libdparse index 597d9a6..63559db 160000 --- a/libdparse +++ b/libdparse @@ -1 +1 @@ -Subproject commit 597d9a697b1f8a51fb2f441c61d0c6cc4eadc6d1 +Subproject commit 63559db5cc6fa38c01bdda36e09638b5f20fb8e5 diff --git a/src/dscanner/analysis/base.d b/src/dscanner/analysis/base.d index e0fdbd7..0b92a5c 100644 --- a/src/dscanner/analysis/base.d +++ b/src/dscanner/analysis/base.d @@ -88,20 +88,6 @@ protected: void addErrorMessage(size_t line, size_t column, string key, string message) { - import std.file : readText, exists; - import std.array : split; - import std.ascii : newline; - import std.algorithm : canFind; - - if (exists(fileName)) - { - string l = readText(fileName).split(newline)[line-1]; - if (l.canFind("@suppress(" ~ key ~ ")")) - { - return; - } - } - _messages.insert(Message(fileName, line, column, key, message, getName())); }