File tree 2 files changed +6
-3
lines changed
sources/scala/xml/parsing
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,10 @@ import scala.util.logging._;
21
21
* @todo can we ignore more entity declarations (i.e. those with extIDs)?
22
22
* @todo expanding entity references
23
23
*/
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) = {}
25
28
26
29
/** returns true is this markup handler is validing */
27
30
val isValidating : Boolean = false ;
Original file line number Diff line number Diff line change @@ -883,7 +883,7 @@ abstract class MarkupParser: (MarkupParser with MarkupHandler) extends AnyRef wi
883
883
884
884
885
885
// Console.println("hello, popped");
886
- stmt. match {
886
+ stmt match {
887
887
// parameter entity
888
888
case " INCLUDE" =>
889
889
doInclude();
@@ -892,7 +892,7 @@ abstract class MarkupParser: (MarkupParser with MarkupHandler) extends AnyRef wi
892
892
}
893
893
case 'I' =>
894
894
nextch;
895
- ch. match {
895
+ ch match {
896
896
case 'G' =>
897
897
nextch;
898
898
xToken(" NORE" );
You can’t perform that action at this time.
0 commit comments