Skip to content

Commit 6711987

Browse files
committed
53.1: just whitespaces
1 parent f3fc0e5 commit 6711987

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

ManualILSpy/ICSharpCode.Decompiler/Ast/Transforms/ContextTrackingVisitor.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ public override TResult VisitMethodDeclaration(MethodDeclaration methodDeclarati
5353
Debug.Assert(context.CurrentMethod == null);
5454
try {
5555
context.CurrentMethod = methodDeclaration.Annotation<MethodDefinition>();
56-
return base.VisitMethodDeclaration(methodDeclaration, data);
57-
} finally {
56+
return base.VisitMethodDeclaration(methodDeclaration, data);
57+
}
58+
finally {
5859
context.CurrentMethod = null;
5960
}
6061
}

ManualILSpy/ManualILSpy/Extention/FirstTimeUseException.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ namespace ManualILSpy.Extention
66
/// implement already, but not tested
77
/// </summary>
88
class FirstTimeUseException : Exception
9-
{
9+
{
10+
public FirstTimeUseException()
11+
{
12+
13+
}
1014
public override string Message
1115
{
1216
get

ManualILSpy/NRefactory/ICSharpCode.NRefactory.CSharp/Ast/Expressions/BinaryOperatorExpression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data)
104104
}
105105

106106
protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
107-
{
107+
{
108108
BinaryOperatorExpression o = other as BinaryOperatorExpression;
109109
return o != null && (this.Operator == BinaryOperatorType.Any || this.Operator == o.Operator)
110110
&& this.Left.DoMatch(o.Left, match) && this.Right.DoMatch(o.Right, match);

0 commit comments

Comments
 (0)