Merge pull request #2916 from ludovic-henry/fix-40306
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / LiteralControlBuilder.cs
index 590865472f753d67e32956e747edd06773c03cd0..75ef3adb38c031dcbd6cc3feb9ef453d4ed6f999 100644 (file)
@@ -4,7 +4,7 @@
 // Authors:
 //     Ben Maurer <bmaurer@novell.com>
 //
-// (C) 2005 Novell, Inc (http://www.novell.com)
+// (C) 2005-2010 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -37,5 +37,11 @@ namespace System.Web.UI.WebControls {
                {
                        throw new HttpException ("LiteralControlBuilder should never be called");
                }
+
+               public override void AppendLiteralString (string s)
+               {
+                       // What does this method _really_ do? The MSDN documentation is vague
+                       base.AppendLiteralString (s);
+               }
        }
 }