You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by bo...@apache.org on 2016/08/13 17:04:11 UTC

svn commit: r1756285 - /logging/log4net/trunk/src/Util/PatternParser.cs

Author: bodewig
Date: Sat Aug 13 17:04:10 2016
New Revision: 1756285

URL: http://svn.apache.org/viewvc?rev=1756285&view=rev
Log:
using statement is needed for cref

Modified:
    logging/log4net/trunk/src/Util/PatternParser.cs

Modified: logging/log4net/trunk/src/Util/PatternParser.cs
URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/Util/PatternParser.cs?rev=1756285&r1=1756284&r2=1756285&view=diff
==============================================================================
--- logging/log4net/trunk/src/Util/PatternParser.cs (original)
+++ logging/log4net/trunk/src/Util/PatternParser.cs Sat Aug 13 17:04:10 2016
@@ -22,6 +22,7 @@ using System.Collections;
 using System.Globalization;
 
 using log4net.Core;
+using log4net.Layout;
 
 namespace log4net.Util
 {