We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6acfea4 commit d4e4be0Copy full SHA for d4e4be0
Source/Linter/Private/LintRules/LintRule_Blueprint_LooseNodes.cpp
@@ -29,14 +29,12 @@ bool ULintRule_Blueprint_LooseNodes::PassesRule_Internal_Implementation(UObject*
29
{
30
for (const UEdGraphNode* Node : Graph->Nodes)
31
32
- if (
33
- Node->IsAutomaticallyPlacedGhostNode() ||
+ if (Node->IsAutomaticallyPlacedGhostNode() ||
34
Node->IsA(UK2Node_Event::StaticClass()) ||
35
Node->IsA(UK2Node_FunctionEntry::StaticClass()) ||
36
Node->IsA(UK2Node_Knot::StaticClass()) ||
37
Node->IsA(UEdGraphNode_Comment::StaticClass()) ||
38
- Node->IsA(UK2Node_Tunnel::StaticClass())
39
- )
+ Node->IsA(UK2Node_Tunnel::StaticClass()))
40
41
continue;
42
}
0 commit comments