Skip to content

Commit bb50add

Browse files
committed
Merge pull request #17 from zerhacken/dev/style-nitpicking
Thanks!
2 parents 83b38ee + 60a99fd commit bb50add

File tree

22 files changed

+25
-25
lines changed

22 files changed

+25
-25
lines changed

src/ClientGenerator/NamespaceGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using System.CodeDom;
2626
using System.Collections.Generic;
2727
using System.Linq;

src/ClientGenerator/Serialization/SerializerGenerationUtilities.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Orleans.CodeGeneration.Serialization
3030
{
3131
class SerializerGenerationUtilities
3232
{
33-
static internal CodeMemberMethod GenerateCopier(string name, string typeName, CodeTypeParameterCollection genericTypeParams = null)
33+
internal static CodeMemberMethod GenerateCopier(string name, string typeName, CodeTypeParameterCollection genericTypeParams = null)
3434
{
3535
var copier = new CodeMemberMethod { Name = name };
3636
copier.Attributes = (copier.Attributes & ~MemberAttributes.AccessMask) | MemberAttributes.Public;
@@ -42,7 +42,7 @@ static internal CodeMemberMethod GenerateCopier(string name, string typeName, Co
4242
return copier;
4343
}
4444

45-
static internal CodeMemberMethod GenerateSerializer(string name, string typeName, CodeTypeParameterCollection genericTypeParams = null)
45+
internal static CodeMemberMethod GenerateSerializer(string name, string typeName, CodeTypeParameterCollection genericTypeParams = null)
4646
{
4747
var serializer = new CodeMemberMethod { Name = name };
4848
serializer.Attributes = (serializer.Attributes & ~MemberAttributes.AccessMask) | MemberAttributes.Public;
@@ -56,7 +56,7 @@ static internal CodeMemberMethod GenerateSerializer(string name, string typeName
5656
return serializer;
5757
}
5858

59-
static internal CodeMemberMethod GenerateDeserializer(string name, string typeName, CodeTypeParameterCollection genericTypeParams = null)
59+
internal static CodeMemberMethod GenerateDeserializer(string name, string typeName, CodeTypeParameterCollection genericTypeParams = null)
6060
{
6161
var deserializer = new CodeMemberMethod { Name = name };
6262
deserializer.Attributes = (deserializer.Attributes & ~MemberAttributes.AccessMask) | MemberAttributes.Public;

src/Orleans/AssemblyLoader/AssemblyLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using System.Collections.Generic;
2626
using System.IO;
2727
using System.Linq;

src/Orleans/Async/ObserverSubscriptionManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using System.Collections.Generic;
2626
using Orleans.Runtime;
2727

src/Orleans/AzureUtils/AzureTableDataManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using System.Collections.Generic;
2626
using System.Data.Services.Client;
2727
using System.Linq;

src/Orleans/Configuration/ClientConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using System.Collections.Generic;
2626
using System.IO;
2727
using System.Net;

src/Orleans/Configuration/OrleansConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using System.Collections.Generic;
2626
using System.Linq;
2727
using System.Text;

src/Orleans/Core/GrainExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using Orleans.Runtime;
2626

2727
namespace Orleans

src/Orleans/Logging/TraceLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public enum LoggerType
126126

127127
private readonly LoggerType loggerType;
128128
private readonly string logName;
129-
private readonly static object lockable;
129+
private static readonly object lockable;
130130

131131
private static readonly List<Tuple<string, Severity>> traceLevelOverrides = new List<Tuple<string, Severity>>();
132132

src/Orleans/Messaging/GatewayManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The above copyright notice and this permission notice shall be included in all c
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
*/
2323

24-
using System;
24+
using System;
2525
using System.Collections.Generic;
2626
using System.Linq;
2727
using System.Text;

0 commit comments

Comments
 (0)