-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Deprecate Map, List, and Set in org.opensearch.common.collect #6609
Labels
Build Libraries & Interfaces
enhancement
Enhancement or improvement to existing feature or request
good first issue
Good for newcomers
Comments
andrross
added
enhancement
Enhancement or improvement to existing feature or request
good first issue
Good for newcomers
untriaged
labels
Mar 9, 2023
Can I take this? |
@diliproshitha Sure! I'll assign it to you. |
diliproshitha
added a commit
to diliproshitha/OpenSearch
that referenced
this issue
Mar 11, 2023
…arch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]>
Raised the following PR: #6631 |
diliproshitha
added a commit
to diliproshitha/OpenSearch
that referenced
this issue
Mar 14, 2023
…view points (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]>
diliproshitha
added a commit
to diliproshitha/OpenSearch
that referenced
this issue
Mar 15, 2023
…ed associated tests (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]>
kotwanikunal
pushed a commit
that referenced
this issue
Mar 15, 2023
…#6631) * Deprecate Map, List, and Set in org.opensearch.common.collect (#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - PR review points (#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - removed associated tests (#6609) Signed-off-by: Dilip Roshitha <[email protected]> --------- Signed-off-by: Dilip Roshitha <[email protected]>
kotwanikunal
pushed a commit
to kotwanikunal/OpenSearch
that referenced
this issue
Mar 15, 2023
…arch-project#6609) (opensearch-project#6631) * Deprecate Map, List, and Set in org.opensearch.common.collect (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - PR review points (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - removed associated tests (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]> --------- Signed-off-by: Dilip Roshitha <[email protected]> (cherry picked from commit defcdf9)
6 tasks
kotwanikunal
added a commit
that referenced
this issue
Mar 16, 2023
…#6631) (#6687) * Deprecate Map, List, and Set in org.opensearch.common.collect (#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - PR review points (#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - removed associated tests (#6609) Signed-off-by: Dilip Roshitha <[email protected]> --------- Signed-off-by: Dilip Roshitha <[email protected]> (cherry picked from commit defcdf9) Co-authored-by: Dilip Roshitha <[email protected]>
This was referenced Mar 22, 2023
mingshl
pushed a commit
to mingshl/OpenSearch-Mingshl
that referenced
this issue
Mar 24, 2023
…arch-project#6609) (opensearch-project#6631) (opensearch-project#6687) * Deprecate Map, List, and Set in org.opensearch.common.collect (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - PR review points (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]> * Deprecate Map, List, and Set in org.opensearch.common.collect - removed associated tests (opensearch-project#6609) Signed-off-by: Dilip Roshitha <[email protected]> --------- Signed-off-by: Dilip Roshitha <[email protected]> (cherry picked from commit defcdf9) Co-authored-by: Dilip Roshitha <[email protected]> Signed-off-by: Mingshi Liu <[email protected]>
Resolved with #6786 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Build Libraries & Interfaces
enhancement
Enhancement or improvement to existing feature or request
good first issue
Good for newcomers
Code links: Map, List, Set
These classes have been pass throughs to the
java.util
since Java 9. They are pretty harmless, except for the annoyance that sometimes your IDE imports the OpenSearch class and then has to fully qualify thejava.util
versions when you want to use those. The task here is to:@Deprecated
annotations to these classesjava.util
versionsThe text was updated successfully, but these errors were encountered: