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

Remove deprecated methods from CustomResource class #6627

Closed
manusa opened this issue Nov 19, 2024 · 1 comment · Fixed by #6634
Closed

Remove deprecated methods from CustomResource class #6627

manusa opened this issue Nov 19, 2024 · 1 comment · Fixed by #6634
Assignees
Labels
good first issue Easy hack; Good issue for new contributors help wanted low hanging fruit
Milestone

Comments

@manusa
Copy link
Member

manusa commented Nov 19, 2024

Description

Part of #6602

The following methods are deprecated and no longer used, they must be removed the CustomResource class:

/**
* @deprecated use {@link HasMetadata#getPlural(Class)} instead
*/
@Deprecated
public static String getPlural(Class<?> clazz) {
return HasMetadata.getPlural(clazz);
}

/**
* @deprecated use {@link HasMetadata#getSingular(Class)} instead
*/
@Deprecated
public static String getSingular(Class<?> clazz) {
return HasMetadata.getSingular(clazz);
}

@manusa manusa added help wanted low hanging fruit good first issue Easy hack; Good issue for new contributors labels Nov 19, 2024
@currantino
Copy link
Contributor

Hey, I'm ready to fix this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Easy hack; Good issue for new contributors help wanted low hanging fruit
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants