Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit faa0568

Browse files
committedJul 4, 2014
Resharper code cleanup
1 parent dffab97 commit faa0568

File tree

156 files changed

+4240
-3695
lines changed

Some content is hidden

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

156 files changed

+4240
-3695
lines changed
 

‎CqlSharp/Authentication/IAuthenticator.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// CqlSharp - CqlSharp
2-
// Copyright (c) 2013 Joost Reuzel
2+
// Copyright (c) 2014 Joost Reuzel
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -16,20 +16,20 @@
1616
namespace CqlSharp.Authentication
1717
{
1818
/// <summary>
19-
/// Implemented by Authentication algorithms
19+
/// Implemented by Authentication algorithms
2020
/// </summary>
2121
public interface IAuthenticator
2222
{
2323
/// <summary>
24-
/// Authenticates using the specified Sasl challenge.
24+
/// Authenticates using the specified Sasl challenge.
2525
/// </summary>
2626
/// <param name="challenge"> The challenge. </param>
2727
/// <param name="response"> The response. </param>
2828
/// <returns> true, if authentication may continue </returns>
2929
bool Authenticate(byte[] challenge, out byte[] response);
3030

3131
/// <summary>
32-
/// Authenticates the specified final SASL response.
32+
/// Authenticates the specified final SASL response.
3333
/// </summary>
3434
/// <param name="finalResponse"> The final response. </param>
3535
/// <returns> true, if authentication is succesful </returns>

‎CqlSharp/Authentication/IAuthenticatorFactory.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// CqlSharp - CqlSharp
2-
// Copyright (c) 2013 Joost Reuzel
2+
// Copyright (c) 2014 Joost Reuzel
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@ namespace CqlSharp.Authentication
1818
public interface IAuthenticatorFactory
1919
{
2020
/// <summary>
21-
/// The full class name of the Cassandra authenticator this authenticator factory can be used with
21+
/// The full class name of the Cassandra authenticator this authenticator factory can be used with
2222
/// </summary>
2323
/// <value> The name </value>
2424
string Name { get; }

0 commit comments

Comments
 (0)
This repository has been archived.