@@ -65,19 +65,19 @@ trait Attribute extends MetaData {
6565
6666 override def remove (key : String ): MetaData =
6767 if (! isPrefixed && this .key == key) next
68- else copy(next remove key)
68+ else copy(next. remove( key) )
6969
7070 override def remove (namespace : String , scope : NamespaceBinding , key : String ): MetaData =
71- if (this .key == key && ( scope getURI pre) == namespace) next
71+ if (this .key == key && scope. getURI( pre) == namespace) next
7272 else copy(next.remove(namespace, scope, key))
7373
7474 override def isPrefixed : Boolean = pre != null
7575
7676 override def getNamespace (owner : Node ): String
7777
7878 override def wellformed (scope : NamespaceBinding ): Boolean = {
79- val arg : String = if (isPrefixed) scope getURI pre else null
80- (next(arg, scope, key) == null ) && ( next wellformed scope)
79+ val arg : String = if (isPrefixed) scope. getURI( pre) else null
80+ (next(arg, scope, key) == null ) && next. wellformed( scope)
8181 }
8282
8383 /** Returns an iterator on attributes */
@@ -98,9 +98,9 @@ trait Attribute extends MetaData {
9898 if (value == null )
9999 return
100100 if (isPrefixed)
101- sb append pre append ':'
101+ sb. append( pre). append( ':' )
102102
103- sb append key append '='
103+ sb. append( key). append( '=' )
104104 val sb2 : StringBuilder = new StringBuilder ()
105105 Utility .sequenceToXML(value, TopScope , sb2, stripComments = true )
106106 Utility .appendQuoted(sb2.toString, sb)
0 commit comments