You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ts...@apache.org on 2014/01/07 17:02:12 UTC

svn commit: r1556255 - in /incubator/log4cxx/trunk/src/main/include/log4cxx: filter/denyallfilter.h filter/loggermatchfilter.h net/xmlsocketappender.h pattern/patternconverter.h

Author: tschoening
Date: Tue Jan  7 16:02:12 2014
New Revision: 1556255

URL: http://svn.apache.org/r1556255
Log:
Corrected some Doxygen warnings.

Modified:
    incubator/log4cxx/trunk/src/main/include/log4cxx/filter/denyallfilter.h
    incubator/log4cxx/trunk/src/main/include/log4cxx/filter/loggermatchfilter.h
    incubator/log4cxx/trunk/src/main/include/log4cxx/net/xmlsocketappender.h
    incubator/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h

Modified: incubator/log4cxx/trunk/src/main/include/log4cxx/filter/denyallfilter.h
URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/main/include/log4cxx/filter/denyallfilter.h?rev=1556255&r1=1556254&r2=1556255&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/main/include/log4cxx/filter/denyallfilter.h (original)
+++ incubator/log4cxx/trunk/src/main/include/log4cxx/filter/denyallfilter.h Tue Jan  7 16:02:12 2014
@@ -53,11 +53,11 @@ namespace log4cxx
 
                         /**
                         Always returns the integer constant {@link spi::Filter#DENY DENY}
-                        regardless of the {@link spi::LoggingEvent LoggingEvent} parameter.
+                        regardless of the {@link spi::LoggingEventPtr LoggingEvent} parameter.
                         @param event The LoggingEvent to filter.
                         @return Always returns {@link spi::Filter#DENY DENY}.
                         */
-                        FilterDecision decide(const spi::LoggingEventPtr& /* event */) const
+                        FilterDecision decide(const spi::LoggingEventPtr& event) const
                                 { return spi::Filter::DENY; }
                 }; // class DenyAllFilter
 

Modified: incubator/log4cxx/trunk/src/main/include/log4cxx/filter/loggermatchfilter.h
URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/main/include/log4cxx/filter/loggermatchfilter.h?rev=1556255&r1=1556254&r2=1556255&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/main/include/log4cxx/filter/loggermatchfilter.h (original)
+++ incubator/log4cxx/trunk/src/main/include/log4cxx/filter/loggermatchfilter.h Tue Jan  7 16:02:12 2014
@@ -42,8 +42,8 @@ namespace log4cxx
                 spi::LoggingEvent LoggingEvent}, then the #decide method returns  {@link
                 spi::Filter#ACCEPT ACCEPT} in case the <b>AcceptOnMatch</b> option value is set
    to <code>true</code>, if it is <code>false</code> then {@link
-   spi::filter::Filter#DENY} is returned. If there is no match, {@link
-   spi::filter::Filter#NEUTRAL} is returned.  A loggerToMatch of "root"
+   spi::Filter#DENY} is returned. If there is no match, {@link
+   spi::Filter#NEUTRAL} is returned.  A loggerToMatch of "root"
    matches both the root logger and a logger named "root".
 
    */

Modified: incubator/log4cxx/trunk/src/main/include/log4cxx/net/xmlsocketappender.h
URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/main/include/log4cxx/net/xmlsocketappender.h?rev=1556255&r1=1556254&r2=1556255&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/main/include/log4cxx/net/xmlsocketappender.h (original)
+++ incubator/log4cxx/trunk/src/main/include/log4cxx/net/xmlsocketappender.h Tue Jan  7 16:02:12 2014
@@ -42,7 +42,7 @@ namespace log4cxx
         XML stream representing a {@link spi::LoggingEvent LoggingEvent} object
                 to the server side.
 
-       - Remote logging uses the TCP protocol. Consequently, if
+        - Remote logging uses the TCP protocol. Consequently, if
         the server is reachable, then log events will eventually arrive
         at the server.
 
@@ -125,11 +125,11 @@ namespace log4cxx
 
       protected:
                 virtual void setSocket(log4cxx::helpers::SocketPtr& socket, log4cxx::helpers::Pool& p);
-                
+
                 virtual void cleanUp(log4cxx::helpers::Pool& p);
-                
+
                 virtual int getDefaultDelay() const;
-                
+
                 virtual int getDefaultPort() const;
 
                 void append(const spi::LoggingEventPtr& event, log4cxx::helpers::Pool& pool);
@@ -140,9 +140,9 @@ namespace log4cxx
                 XMLSocketAppender(const XMLSocketAppender&);
                 XMLSocketAppender& operator=(const XMLSocketAppender&);
         }; // class XMLSocketAppender
-        
+
         LOG4CXX_PTR_DEF(XMLSocketAppender);
-        
+
     } // namespace net
 } // namespace log4cxx
 

Modified: incubator/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h
URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h?rev=1556255&r1=1556254&r2=1556255&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h (original)
+++ incubator/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h Tue Jan  7 16:02:12 2014
@@ -43,7 +43,7 @@ namespace log4cxx {
    <p>Conversion specifiers in a conversion patterns are parsed to
    individual PatternConverters. Each of which is responsible for
    converting an object in a converter specific manner.
-   
+
  */
 class LOG4CXX_EXPORT PatternConverter : public virtual log4cxx::helpers::ObjectImpl {
 
@@ -70,10 +70,10 @@ protected:
   virtual ~PatternConverter();
 
 public:
-  DECLARE_LOG4CXX_PATTERN(PatternConverter)
-  BEGIN_LOG4CXX_CAST_MAP()
-          LOG4CXX_CAST_ENTRY(PatternConverter)
-  END_LOG4CXX_CAST_MAP()
+  DECLARE_LOG4CXX_PATTERN(PatternConverter);
+  BEGIN_LOG4CXX_CAST_MAP();
+          LOG4CXX_CAST_ENTRY(PatternConverter);
+  END_LOG4CXX_CAST_MAP();
 
   /**
    * Formats an object into a string buffer.