Skip to content

Commit df61103

Browse files
Strip ws and untabify, part 2
1 parent 5284df6 commit df61103

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

projects/client/RabbitMQ.Client/src/client/impl/MethodArgumentWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class MethodArgumentWriter
5454
private bool m_needBitFlush;
5555
private byte m_bitAccumulator;
5656
private int m_bitMask;
57-
57+
5858
public MethodArgumentWriter(NetworkBinaryWriter writer)
5959
{
6060
m_writer = writer;

projects/examples/wcf/Test/SessionTest/ICart.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace RabbitMQ.ServiceModel.Test.SessionTest
4343
{
4444
using System;
4545
using System.ServiceModel;
46-
46+
4747
[ServiceContract(SessionMode= SessionMode.Required)]
4848
public interface ICart
4949
{
@@ -53,7 +53,7 @@ public interface ICart
5353
[OperationContract]
5454
double GetTotal();
5555

56-
56+
5757
Guid Id { [OperationContract]get; }
5858
}
5959
}

projects/examples/wcf/Test/TwoWayTest/ICalculator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public interface ICalculator
4949
{
5050
[OperationContract]
5151
int Add(int x, int y);
52-
52+
5353
[OperationContract]
5454
int Subtract(int x, int y);
5555
}

projects/examples/wcf/Test/TwoWayTest/TwoWayTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void StartService(Binding binding)
5858
m_service = new ServiceHost(typeof(Calculator), new Uri("soap.amqp:///"));
5959
m_service.AddServiceEndpoint(typeof(ICalculator), binding, "Calculator");
6060
m_service.Open();
61-
61+
6262
Thread.Sleep(500);
6363
Util.WriteLine(ConsoleColor.Green, "[DONE]");
6464
}

projects/examples/wcf/configDemo/Client/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ static void Main(string[] args)
5656
Console.WriteLine();
5757
Thread.Sleep(500);
5858

59-
59+
6060
Client cli = new Client();
6161
cli.Run();
62-
62+
6363
Console.WriteLine();
6464
Console.Write("Press Enter to Exit...");
6565
Console.ReadLine();

0 commit comments

Comments
 (0)