Skip to content

Commit f2f07e8

Browse files
committed
Correcting identation
1 parent a67936d commit f2f07e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Hangfire.SqlServer/SqlServerConnection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public override HashSet<string> GetAllItemsFromSet(string key)
255255

256256
public override HashSet<string> GetAllItemsFromSet(string key, SearchCriteria criteria)
257257
{
258-
if (key == null) throw new ArgumentNullException("key");
258+
if (key == null) throw new ArgumentNullException("key");
259259
if (criteria == null) throw new ArgumentNullException("criteria");
260260

261261
string valuePattern = null;
@@ -274,11 +274,11 @@ public override HashSet<string> GetAllItemsFromSet(string key, SearchCriteria cr
274274
throw new ArgumentNullException(string.Format("Unsupported search mode: {0}.", criteria.SearchMode));
275275
}
276276

277-
var result = _connection.Query<string>(
277+
var result = _connection.Query<string>(
278278
@"select Value from HangFire.[Set] where [Key] = @key and Value like @valuePattern",
279279
new { key, valuePattern });
280280

281-
return new HashSet<string>(result);
281+
return new HashSet<string>(result);
282282
}
283283

284284
public override string GetFirstByLowestScoreFromSet(string key, double fromScore, double toScore)

0 commit comments

Comments
 (0)