8245231: Javadoc for the readObject methods needs to be updated

Reviewed-by: lancea, msheppar
This commit is contained in:
Joe Wang 2020-05-18 22:13:35 +00:00
parent 039cb65753
commit b08140dade
3 changed files with 7 additions and 7 deletions

View File

@ -130,8 +130,8 @@ public abstract class LocPathIterator extends PredicatedNodeTest
* *
* @param stream Input stream to read from * @param stream Input stream to read from
* *
* @throws java.io.IOException * @throws java.io.IOException in case of any IO related exceptions
* @throws javax.xml.transform.TransformerException * @throws ClassNotFoundException if Class of the serialized object cannot be found
*/ */
private void readObject(java.io.ObjectInputStream stream) private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException, ClassNotFoundException throws java.io.IOException, ClassNotFoundException

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
*/ */
/* /*
* Licensed to the Apache Software Foundation (ASF) under one or more * Licensed to the Apache Software Foundation (ASF) under one or more
@ -63,8 +63,8 @@ public abstract class PredicatedNodeTest extends NodeTest implements SubContextL
* *
* @param stream Input stream to read from * @param stream Input stream to read from
* *
* @throws java.io.IOException * @throws java.io.IOException in case of any IO related exceptions
* @throws javax.xml.transform.TransformerException * @throws ClassNotFoundException if Class of the serialized object cannot be found
*/ */
private void readObject(java.io.ObjectInputStream stream) private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException, ClassNotFoundException throws java.io.IOException, ClassNotFoundException

View File

@ -254,8 +254,8 @@ public class UnionPathIterator extends LocPathIterator
* *
* @param stream Input stream to read from * @param stream Input stream to read from
* *
* @throws java.io.IOException * @throws java.io.IOException in case of any IO related exceptions
* @throws javax.xml.transform.TransformerException * @throws ClassNotFoundException if Class of the serialized object cannot be found
*/ */
private void readObject(java.io.ObjectInputStream stream) private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException, ClassNotFoundException throws java.io.IOException, ClassNotFoundException