remove trailing white space from all files
[arvados.git] / sdk / R / R / HttpRequest.R
index d1100a2e5fe99ee5971d0c152a7103fe2b2b3391..4595fef662c1c9422af13dc0222a10bd9a9df48a 100644 (file)
@@ -13,7 +13,7 @@ HttpRequest <- R6::R6Class(
         validContentTypes = NULL,
         validVerbs = NULL,
 
-        initialize = function() 
+        initialize = function()
         {
             self$validContentTypes <- c("text", "raw")
             self$validVerbs <- c("GET", "POST", "PUT", "DELETE", "PROPFIND", "MOVE")
@@ -60,7 +60,7 @@ HttpRequest <- R6::R6Class(
             return("")
         },
 
-        getConnection = function(url, headers, openMode) 
+        getConnection = function(url, headers, openMode)
         {
             h <- curl::new_handle()
             curl::handle_setheaders(h, .list = headers)