Skip to content

Commit 29d03db

Browse files
committed
Remove unneeded disjunction
1 parent 0a817eb commit 29d03db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/ql/test/library-tests/frameworks/microsoft/aspnetcore/blazor/remoteFlowSource.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import semmle.code.csharp.security.dataflow.flowsources.Remote
33
from RemoteFlowSource source, File f
44
where
55
source.getLocation().getFile() = f and
6-
(f.fromSource() or f.getExtension() = "razor")
6+
f.fromSource()
77
select source, source.getSourceType()

0 commit comments

Comments
 (0)