Skip to content

Commit 61acd25

Browse files
mihaylovadriaanm
mihaylov
authored andcommitted
Improved @throws in scaladoc comments
1 parent 3303ab7 commit 61acd25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/library/scala/xml/Group.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,31 @@ case class Group(val nodes: Seq[Node]) extends Node {
3434
}
3535

3636
/**
37-
* @throws scala.compat.Platform.UnsupportedOperationException (always)
37+
* @throws Predef.UnsupportedOperationException (always)
3838
*/
3939
final def label =
4040
throw new UnsupportedOperationException("class Group does not support method 'label'")
4141

4242
/**
43-
* @throws scala.compat.Platform.UnsupportedOperationException (always)
43+
* @throws Predef.UnsupportedOperationException (always)
4444
*/
4545
final override def attributes =
4646
throw new UnsupportedOperationException("class Group does not support method 'attributes'")
4747

4848
/**
49-
* @throws scala.compat.Platform.UnsupportedOperationException (always)
49+
* @throws Predef.UnsupportedOperationException (always)
5050
*/
5151
final override def namespace =
5252
throw new UnsupportedOperationException("class Group does not support method 'namespace'")
5353

5454
/**
55-
* @throws scala.compat.Platform.UnsupportedOperationException (always)
55+
* @throws Predef.UnsupportedOperationException (always)
5656
*/
5757
final override def child =
5858
throw new UnsupportedOperationException("class Group does not support method 'child'")
5959

6060
/**
61-
* @throws scala.compat.Platform.UnsupportedOperationException (always)
61+
* @throws Predef.UnsupportedOperationException (always)
6262
*/
6363
def toString(sb: StringBuilder) =
6464
throw new UnsupportedOperationException("class Group does not support method toString(StringBuilder)")

0 commit comments

Comments
 (0)