Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8247973: Javadoc incorrect for IdentityArrayList, IdentityLinkedList #6694

Closed
wants to merge 3 commits into from
Closed

8247973: Javadoc incorrect for IdentityArrayList, IdentityLinkedList #6694

wants to merge 3 commits into from

Conversation

anupamdev20
Copy link
Contributor

@anupamdev20 anupamdev20 commented Dec 3, 2021

The documentation for following methods used equals() for object equality:

sun.awt.util.IdentityLinkedList#contains
sun.awt.util.IdentityArrayList#contains
sun.awt.util.IdentityArrayList#indexOf
sun.awt.util.IdentityArrayList#lastIndexOf
sun.awt.util.IdentityArrayList#remove(java.lang.Object)

I have updated the comments to use "==" operator for object equality. Kindly review the changes for the same.


Progress

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed

Issue

  • JDK-8247973: Javadoc incorrect for IdentityArrayList, IdentityLinkedList

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/6694/head:pull/6694
$ git checkout pull/6694

Update a local copy of the PR:
$ git checkout pull/6694
$ git pull https://git.openjdk.java.net/jdk pull/6694/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 6694

View PR using the GUI difftool:
$ git pr show -t 6694

Using diff file

Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/6694.diff

@bridgekeeper
Copy link

bridgekeeper bot commented Dec 3, 2021

👋 Welcome back anupamdev20! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Dec 3, 2021

⚠️ @anupamdev20 This pull request contains merges that bring in commits not present in the target repository. Since this is not a "merge style" pull request, these changes will be squashed when this pull request in integrated. If this is your intention, then please ignore this message. If you want to preserve the commit structure, you must change the title of this pull request to Merge <project>:<branch> where <project> is the name of another project in the OpenJDK organization (for example Merge jdk:master).

@openjdk openjdk bot added the rfr Pull request is ready for review label Dec 3, 2021
@openjdk
Copy link

openjdk bot commented Dec 3, 2021

@anupamdev20 The following labels will be automatically applied to this pull request:

  • client
  • net

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added client client-libs-dev@openjdk.org net net-dev@openjdk.org labels Dec 3, 2021
@mlbridge
Copy link

mlbridge bot commented Dec 3, 2021

Webrevs

Copy link
Member

@aivanov-jdk aivanov-jdk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I propose removing changes to HttpURLConnection.java from this PR. Both IdentityArrayList, IdentityLinkedList are in java.desktop module but HttpURLConnection is in java.base module. Submit a new issue to fix spelling errors in HttpURLConnection.java.

@@ -216,8 +216,12 @@ public boolean contains(Object o) {
* Returns the index of the first occurrence of the specified element
* in this list, or -1 if this list does not contain the element.
* More formally, returns the lowest index {@code i} such that
* {@code Objects.equals(o, get(i))},
* {@code get(i)==o},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shall it have spaces on either side of ==?

Suggested change
* {@code get(i)==o},
* {@code get(i) == o},

I see IdentityLinkedList.java doesn't have spaces around == in this case. Yet in this case, probably {@code o == e} should not have the spaces too.

Comment on lines -391 to +399
/**
/**
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An extra space.

* Removes the first occurrence of the specified element from this list,
* if it is present. If the list does not contain the element, it is
* if it is present. If this list does not contain the element, it is
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* if it is present. If this list does not contain the element, it is
* if it is present. If this list does not contain the element, the list is

I think it adds clarification to what is unchanged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
client client-libs-dev@openjdk.org net net-dev@openjdk.org rfr Pull request is ready for review
Development

Successfully merging this pull request may close these issues.

2 participants