From a549484d6c17420df7be5a20fa42327c4589e5ed Mon Sep 17 00:00:00 2001 From: Christian Helwig <helwig@vr.rwth-aachen.de> Date: Fri, 19 Jan 2024 11:17:20 +0100 Subject: [PATCH] style(pawn): Cleaned up for clang-format pipeline; --- Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp | 5 +---- Source/RWTHVRToolkit/Public/Pawn/RWTHVRPawn.h | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp b/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp index da433a26..68be98a6 100644 --- a/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp +++ b/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp @@ -147,10 +147,7 @@ void ARWTHVRPawn::SetupPlayerInputComponent(UInputComponent* PlayerInputComponen } } -UInputComponent* ARWTHVRPawn::GetPlayerInputComponent() -{ - return ThisPlayerInputComponent; -} +UInputComponent* ARWTHVRPawn::GetPlayerInputComponent() { return ThisPlayerInputComponent; } void ARWTHVRPawn::AddInputMappingContext(const APlayerController* PC, const UInputMappingContext* Context) const diff --git a/Source/RWTHVRToolkit/Public/Pawn/RWTHVRPawn.h b/Source/RWTHVRToolkit/Public/Pawn/RWTHVRPawn.h index d9a6200a..176fb081 100644 --- a/Source/RWTHVRToolkit/Public/Pawn/RWTHVRPawn.h +++ b/Source/RWTHVRToolkit/Public/Pawn/RWTHVRPawn.h @@ -114,6 +114,5 @@ protected: void SetupMotionControllerSources(); private: - UInputComponent* ThisPlayerInputComponent; }; -- GitLab