From eb622d927b400e00df69c5a28e7d8cf0d517e4db Mon Sep 17 00:00:00 2001 From: Jonathan Keane Date: Wed, 19 Feb 2025 08:54:36 -0600 Subject: [PATCH] MINOR: [R] Clean up a linting issue from #45261 (#45575) ### Rationale for this change Cleanup a minor formatting issue introduced in #45261 ### What changes are included in this PR? Remove two new lines ### Are these changes tested? Yes operative changes, linter should pass ### Are there any user-facing changes? No Authored-by: Jonathan Keane Signed-off-by: Antoine Pitrou --- r/src/safe-call-into-r-impl.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/r/src/safe-call-into-r-impl.cpp b/r/src/safe-call-into-r-impl.cpp index a459bfe73d4f1..c2fa1e1eac6b0 100644 --- a/r/src/safe-call-into-r-impl.cpp +++ b/r/src/safe-call-into-r-impl.cpp @@ -45,9 +45,7 @@ bool SetEnableSignalStopSource(bool enabled) { } // [[arrow::export]] -bool CanRunWithCapturedR() { - return MainRThread::GetInstance().Executor() == nullptr; -} +bool CanRunWithCapturedR() { return MainRThread::GetInstance().Executor() == nullptr; } // [[arrow::export]] std::string TestSafeCallIntoR(cpp11::function r_fun_that_returns_a_string,