Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@novell.com>2009-06-17 16:30:59 +0400
committerMike Krüger <mkrueger@novell.com>2009-06-17 16:30:59 +0400
commita58d8dfee2238c805d3a70da4b9152d2ef6cf9dc (patch)
tree95c2fc9202c1a870fa89e7eb5992f16d58e601fa /main/contrib
parente870bba1d9eb71a5ebd393189c6640d7d9a97dfc (diff)
* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Corrected
embedded statement. svn path=/trunk/monodevelop/; revision=136299
Diffstat (limited to 'main/contrib')
-rw-r--r--main/contrib/NRefactory/Project/ChangeLog5
-rw-r--r--main/contrib/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/main/contrib/NRefactory/Project/ChangeLog b/main/contrib/NRefactory/Project/ChangeLog
index a8149c459d..6dfa5bad2d 100644
--- a/main/contrib/NRefactory/Project/ChangeLog
+++ b/main/contrib/NRefactory/Project/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-17 Mike Krüger <mkrueger@novell.com>
+
+ * Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Corrected
+ embedded statement.
+
2009-05-12 Mike Krüger <mkrueger@novell.com>
* Src/Lexer/CSharp/Lexer.cs: Fixed compilation error.
diff --git a/main/contrib/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs b/main/contrib/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs
index 5c82605210..ee98e2a6a9 100644
--- a/main/contrib/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs
+++ b/main/contrib/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs
@@ -1400,8 +1400,8 @@ namespace ICSharpCode.NRefactory.PrettyPrinter
} else {
++outputFormatter.IndentationLevel;
outputFormatter.NewLine();
+ outputFormatter.Indent ();
TrackVisit(statement, null);
- outputFormatter.NewLine();
--outputFormatter.IndentationLevel;
}
}