Skip to content

Commit c0c8dd9

Browse files
committed
Removed extraneous spaces
It's unclear when or how this was introduced, but it appears there were some inadvertent trailing spaces introduced on the `AttributeValueCollectionExtensions` class. Cleaning those up now since I just noticed them. Whoops!
1 parent 8f51efe commit c0c8dd9

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

OnTopic/Attributes/AttributeValueCollectionExtensions.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ out var result
167167
/// </requires>
168168
public static void SetBoolean(
169169
this AttributeValueCollection attributes,
170-
string key,
171-
bool value,
170+
string key,
171+
bool value,
172172
bool? isDirty = null
173173
) => attributes?.SetValue(key, value ? "1" : "0", isDirty, true);
174174

@@ -205,8 +205,8 @@ public static void SetBoolean(
205205
/// </requires>
206206
public static void SetInteger(
207207
this AttributeValueCollection attributes,
208-
string key,
209-
int value,
208+
string key,
209+
int value,
210210
bool? isDirty = null
211211
) => attributes?.SetValue(
212212
key,
@@ -247,8 +247,8 @@ public static void SetInteger(
247247
/// </requires>
248248
public static void SetDateTime(
249249
this AttributeValueCollection attributes,
250-
string key,
251-
DateTime value,
250+
string key,
251+
DateTime value,
252252
bool? isDirty = null
253253
) => attributes?.SetValue(
254254
key,
@@ -258,4 +258,4 @@ public static void SetDateTime(
258258
);
259259

260260
} //Class
261-
} //Namespace
261+
} //Namespace

0 commit comments

Comments
 (0)