Skip to content

Commit 764755c

Browse files
oderskyadriaanm
authored andcommitted
*** empty log message ***
1 parent 6db8f72 commit 764755c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

sources/scala/xml/parsing/MarkupHandler.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ import scala.util.logging._;
2121
* @todo can we ignore more entity declarations (i.e. those with extIDs)?
2222
* @todo expanding entity references
2323
*/
24-
abstract class MarkupHandler with Logged {
24+
abstract class MarkupHandler extends AnyRef with Logged with ConsoleLogger {
25+
26+
// impl. of Logged
27+
//def log(msg:String) = {}
2528

2629
/** returns true is this markup handler is validing */
2730
val isValidating: Boolean = false;

sources/scala/xml/parsing/MarkupParser.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ abstract class MarkupParser: (MarkupParser with MarkupHandler) extends AnyRef wi
883883

884884

885885
//Console.println("hello, popped");
886-
stmt.match {
886+
stmt match {
887887
// parameter entity
888888
case "INCLUDE" =>
889889
doInclude();
@@ -892,7 +892,7 @@ abstract class MarkupParser: (MarkupParser with MarkupHandler) extends AnyRef wi
892892
}
893893
case 'I' =>
894894
nextch;
895-
ch.match {
895+
ch match {
896896
case 'G' =>
897897
nextch;
898898
xToken("NORE");

0 commit comments

Comments
 (0)