Skip to content

Commit 49984a6

Browse files
Mass strip trailing whitespace, untabify
1 parent 3735a1c commit 49984a6

File tree

70 files changed

+198
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+198
-198
lines changed

projects/client/Apigen/properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
using System.Runtime.CompilerServices;
4343
using System.Runtime.InteropServices;
4444

45-
// General Information about an assembly is controlled through the following
45+
// General Information about an assembly is controlled through the following
4646
// set of attributes. Change these attribute values to modify the information
4747
// associated with an assembly.
4848
[assembly: AssemblyTitle("ApiGen")]
@@ -54,8 +54,8 @@
5454
[assembly: AssemblyTrademark("")]
5555
[assembly: AssemblyCulture("")]
5656

57-
// Setting ComVisible to false makes the types in this assembly not visible
58-
// to COM components. If you need to access a type in this assembly from
57+
// Setting ComVisible to false makes the types in this assembly not visible
58+
// to COM components. If you need to access a type in this assembly from
5959
// COM, set the ComVisible attribute to true on that type.
6060
[assembly: ComVisible(false)]
6161

projects/client/ApigenBootstrap/properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
using System.Runtime.CompilerServices;
4343
using System.Runtime.InteropServices;
4444

45-
// General Information about an assembly is controlled through the following
45+
// General Information about an assembly is controlled through the following
4646
// set of attributes. Change these attribute values to modify the information
4747
// associated with an assembly.
4848
[assembly: AssemblyTitle("ApiGenBootstrap")]
@@ -54,8 +54,8 @@
5454
[assembly: AssemblyTrademark("")]
5555
[assembly: AssemblyCulture("")]
5656

57-
// Setting ComVisible to false makes the types in this assembly not visible
58-
// to COM components. If you need to access a type in this assembly from
57+
// Setting ComVisible to false makes the types in this assembly not visible
58+
// to COM components. If you need to access a type in this assembly from
5959
// COM, set the ComVisible attribute to true on that type.
6060
[assembly: ComVisible(false)]
6161

projects/client/RabbitMQ.Client/src/client/api/AmqpTcpEndpoint.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ public SslOption Ssl
105105
}
106106

107107
///<summary>Construct an AmqpTcpEndpoint with the given
108-
///IProtocol, hostname, port number and ssl option. If the port
109-
///number is -1, the default port number for the IProtocol
108+
///IProtocol, hostname, port number and ssl option. If the port
109+
///number is -1, the default port number for the IProtocol
110110
///will be used.</summary>
111111
public AmqpTcpEndpoint(IProtocol protocol, string hostName, int portOrMinusOne, SslOption ssl)
112112
{

projects/client/RabbitMQ.Client/src/client/api/QueueingBasicConsumer.cs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -68,24 +68,24 @@ namespace RabbitMQ.Client
6868
/// The following is a simple example of the usage of this class:
6969
///</para>
7070
///<example><code>
71-
/// IModel channel = ...;
72-
/// QueueingBasicConsumer consumer = new QueueingBasicConsumer(channel);
73-
/// channel.BasicConsume(queueName, null, consumer);
74-
///
75-
/// // At this point, messages will be being asynchronously delivered,
76-
/// // and will be queueing up in consumer.Queue.
77-
///
78-
/// while (true) {
79-
/// try {
80-
/// BasicDeliverEventArgs e = (BasicDeliverEventArgs) consumer.Queue.Dequeue();
81-
/// // ... handle the delivery ...
82-
/// channel.BasicAck(e.DeliveryTag, false);
83-
/// } catch (EndOfStreamException ex) {
84-
/// // The consumer was cancelled, the model closed, or the
85-
/// // connection went away.
86-
/// break;
87-
/// }
88-
/// }
71+
/// IModel channel = ...;
72+
/// QueueingBasicConsumer consumer = new QueueingBasicConsumer(channel);
73+
/// channel.BasicConsume(queueName, null, consumer);
74+
///
75+
/// // At this point, messages will be being asynchronously delivered,
76+
/// // and will be queueing up in consumer.Queue.
77+
///
78+
/// while (true) {
79+
/// try {
80+
/// BasicDeliverEventArgs e = (BasicDeliverEventArgs) consumer.Queue.Dequeue();
81+
/// // ... handle the delivery ...
82+
/// channel.BasicAck(e.DeliveryTag, false);
83+
/// } catch (EndOfStreamException ex) {
84+
/// // The consumer was cancelled, the model closed, or the
85+
/// // connection went away.
86+
/// break;
87+
/// }
88+
/// }
8989
///</code></example>
9090
///</remarks>
9191
public class QueueingBasicConsumer : DefaultBasicConsumer

projects/client/RabbitMQ.Client/src/client/api/ShutdownReportEntry.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@ public class ShutdownReportEntry
4949
{
5050
public string m_description;
5151
public Exception m_ex;
52-
52+
5353
public ShutdownReportEntry(string description, Exception ex)
5454
{
5555
m_description = description;
5656
m_ex = ex;
5757
}
58-
58+
5959
///<summary>Description provided in the error</summary>
6060
public string Description { get { return m_description; } }
61-
61+
6262
///<summary>Exception object that occured during shutdown, or null
6363
///if unspecified</summary>
6464
public Exception Exception { get { return m_ex; } }
65-
65+
6666
public override string ToString()
6767
{
6868
string output = "Message: " + Description;

projects/client/RabbitMQ.Client/src/client/api/SslHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static Stream TcpUpgrade(Stream tcpStream, SslOption sslOption)
9494
SslStream sslStream = new SslStream(tcpStream, false,
9595
new RemoteCertificateValidationCallback(helper.CertificateValidationCallback),
9696
new LocalCertificateSelectionCallback(helper.CertificateSelectionCallback));
97-
97+
9898
sslStream.AuthenticateAsClient(sslOption.ServerName,
9999
sslOption.Certs,
100100
sslOption.Version,

projects/client/RabbitMQ.Client/src/client/exceptions/ChannelAllocationException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class ChannelAllocationException : Exception
5353
/// Indicates that there are no more free channels.
5454
/// </summary>
5555
public ChannelAllocationException()
56-
: base("The connection cannot support any more channels. Consider creating a new connection")
56+
: base("The connection cannot support any more channels. Consider creating a new connection")
5757
{
5858
m_channel = -1;
5959
}

projects/client/RabbitMQ.Client/src/client/exceptions/PossibleAuthenticationFailureException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242

4343
namespace RabbitMQ.Client.Exceptions
4444
{
45-
/// <summary> Thrown when the likely cause is an
45+
/// <summary> Thrown when the likely cause is an
4646
/// authentication failure. </summary>
4747
public class PossibleAuthenticationFailureException : Exception
4848
{
49-
public PossibleAuthenticationFailureException(String msg, Exception inner)
49+
public PossibleAuthenticationFailureException(String msg, Exception inner)
5050
: base(msg, inner)
5151
{
5252
}

projects/client/RabbitMQ.Client/src/client/exceptions/ProtocolVersionMismatchException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public ProtocolVersionMismatchException(int clientMajor,
6868
int clientMinor,
6969
int serverMajor,
7070
int serverMinor)
71-
: base("AMQP server protocol negotiation failure: server version "+
71+
: base("AMQP server protocol negotiation failure: server version " +
7272
positiveOrUnknown(serverMajor) + "-" + positiveOrUnknown(serverMinor) +
7373
", client version " + positiveOrUnknown(clientMajor) + "-" + positiveOrUnknown(clientMinor))
7474
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private void UpdateContentBodyState()
101101
? AssemblyState.ExpectingContentBody
102102
: AssemblyState.Complete;
103103
}
104-
104+
105105
public Command HandleFrame(Frame f)
106106
{
107107
switch (m_state)
@@ -153,7 +153,7 @@ public Command HandleFrame(Frame f)
153153
default:
154154
Trace.Fail(string.Format(
155155
"Received frame in invalid state {0}; {1}",
156-
m_state,
156+
m_state,
157157
f));
158158
return null;
159159
}

0 commit comments

Comments
 (0)