Skip to content

Commit 61c4687

Browse files
author
Vlad Ionescu
committed
replacing tab chars
1 parent 4a789ab commit 61c4687

File tree

1 file changed

+34
-34
lines changed

1 file changed

+34
-34
lines changed

src/client/impl/BasicProperties.cs

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -61,35 +61,35 @@ namespace RabbitMQ.Client.Impl
6161
{
6262
public abstract class BasicProperties: ContentHeaderBase, IBasicProperties
6363
{
64-
public abstract string ContentType { get; set; }
65-
public abstract string ContentEncoding { get; set; }
66-
public abstract IDictionary Headers { get; set; }
67-
public abstract byte DeliveryMode { get; set; }
68-
public abstract byte Priority { get; set; }
69-
public abstract string CorrelationId { get; set; }
70-
public abstract string ReplyTo { get; set; }
71-
public abstract string Expiration { get; set; }
72-
public abstract string MessageId { get; set; }
73-
public abstract AmqpTimestamp Timestamp { get; set; }
74-
public abstract string Type { get; set; }
75-
public abstract string UserId { get; set; }
76-
public abstract string AppId { get; set; }
77-
public abstract string ClusterId { get; set; }
64+
public abstract string ContentType { get; set; }
65+
public abstract string ContentEncoding { get; set; }
66+
public abstract IDictionary Headers { get; set; }
67+
public abstract byte DeliveryMode { get; set; }
68+
public abstract byte Priority { get; set; }
69+
public abstract string CorrelationId { get; set; }
70+
public abstract string ReplyTo { get; set; }
71+
public abstract string Expiration { get; set; }
72+
public abstract string MessageId { get; set; }
73+
public abstract AmqpTimestamp Timestamp { get; set; }
74+
public abstract string Type { get; set; }
75+
public abstract string UserId { get; set; }
76+
public abstract string AppId { get; set; }
77+
public abstract string ClusterId { get; set; }
7878

79-
public abstract void ClearContentType();
80-
public abstract void ClearContentEncoding();
81-
public abstract void ClearHeaders();
82-
public abstract void ClearDeliveryMode();
83-
public abstract void ClearPriority();
84-
public abstract void ClearCorrelationId();
85-
public abstract void ClearReplyTo();
86-
public abstract void ClearExpiration();
87-
public abstract void ClearMessageId();
88-
public abstract void ClearTimestamp();
89-
public abstract void ClearType();
90-
public abstract void ClearUserId();
91-
public abstract void ClearAppId();
92-
public abstract void ClearClusterId();
79+
public abstract void ClearContentType();
80+
public abstract void ClearContentEncoding();
81+
public abstract void ClearHeaders();
82+
public abstract void ClearDeliveryMode();
83+
public abstract void ClearPriority();
84+
public abstract void ClearCorrelationId();
85+
public abstract void ClearReplyTo();
86+
public abstract void ClearExpiration();
87+
public abstract void ClearMessageId();
88+
public abstract void ClearTimestamp();
89+
public abstract void ClearType();
90+
public abstract void ClearUserId();
91+
public abstract void ClearAppId();
92+
public abstract void ClearClusterId();
9393

9494
public abstract bool IsContentTypePresent();
9595
public abstract bool IsContentEncodingPresent();
@@ -118,13 +118,13 @@ public PublicationAddress ReplyToAddress
118118
}
119119
}
120120

121-
public void SetPersistent(bool persistent)
121+
public void SetPersistent(bool persistent)
122122
{
123-
if (persistent)
124-
DeliveryMode = 2;
125-
else
126-
DeliveryMode = 1;
127-
}
123+
if (persistent)
124+
DeliveryMode = 2;
125+
else
126+
DeliveryMode = 1;
127+
}
128128

129129
public override object Clone()
130130
{

0 commit comments

Comments
 (0)