pdxcodemonkey commented on a change in pull request #881:
URL: https://github.com/apache/geode-native/pull/881#discussion_r731252105



##########
File path: netcore/shared/GfshExecute.cs
##########
@@ -28,11 +28,19 @@ public class GfshExecute : Gfsh
         private String connectionCommand_ = null;
         private ITestOutputHelper output;
 
-        public GfshExecute(ITestOutputHelper output)
+        public ITestOutputHelper Output
         {
-            this.output = output;
+          get { return output; }
+          set { output = value; }
         }
 
+
+    public GfshExecute(ITestOutputHelper output)
+        {
+            //Output = output;
+            this.output = output;
+    }

Review comment:
       Looks like you have a tabs vs spaces issue in this file(?).  Please fix.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to