You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4php-dev@logging.apache.org by gr...@apache.org on 2009/05/23 23:29:52 UTC

svn commit: r778033 - /incubator/log4php/trunk/src/main/php/LoggerFilter.php

Author: grobmeier
Date: Sat May 23 21:29:51 2009
New Revision: 778033

URL: http://svn.apache.org/viewvc?rev=778033&view=rev
Log:
class is meant for extension; marked it abstract

Modified:
    incubator/log4php/trunk/src/main/php/LoggerFilter.php

Modified: incubator/log4php/trunk/src/main/php/LoggerFilter.php
URL: http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/LoggerFilter.php?rev=778033&r1=778032&r2=778033&view=diff
==============================================================================
--- incubator/log4php/trunk/src/main/php/LoggerFilter.php (original)
+++ incubator/log4php/trunk/src/main/php/LoggerFilter.php Sat May 23 21:29:51 2009
@@ -56,7 +56,7 @@
  * @package log4php
  * @subpackage spi
  */
-class LoggerFilter {
+abstract class LoggerFilter {
 
 	/**
 	 * The log event must be logged immediately without consulting with
@@ -86,7 +86,6 @@
 	 * default do-nothing implementation for convenience.
 	*/
 	public function activateOptions() {
-		return;
 	}
 
 	/**