Skip to content

Commit d4e4be0

Browse files
committed
small style edits
1 parent 6acfea4 commit d4e4be0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Source/Linter/Private/LintRules/LintRule_Blueprint_LooseNodes.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,12 @@ bool ULintRule_Blueprint_LooseNodes::PassesRule_Internal_Implementation(UObject*
2929
{
3030
for (const UEdGraphNode* Node : Graph->Nodes)
3131
{
32-
if (
33-
Node->IsAutomaticallyPlacedGhostNode() ||
32+
if (Node->IsAutomaticallyPlacedGhostNode() ||
3433
Node->IsA(UK2Node_Event::StaticClass()) ||
3534
Node->IsA(UK2Node_FunctionEntry::StaticClass()) ||
3635
Node->IsA(UK2Node_Knot::StaticClass()) ||
3736
Node->IsA(UEdGraphNode_Comment::StaticClass()) ||
38-
Node->IsA(UK2Node_Tunnel::StaticClass())
39-
)
37+
Node->IsA(UK2Node_Tunnel::StaticClass()))
4038
{
4139
continue;
4240
}

0 commit comments

Comments
 (0)