Skip to content
This repository was archived by the owner on Feb 13, 2026. It is now read-only.

Commit c2cba19

Browse files
authored
Remove deprecated methods (#323)
## Description Remove deprecated methods for next release ## Type of Change Please delete options that are not relevant. * Update (Update version or update existing automation) ## Checklist - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit/integration tests pass locally with my changes Signed-off-by: David Kornel <kornys@outlook.com>
1 parent d1f8c7c commit c2cba19

1 file changed

Lines changed: 0 additions & 39 deletions

File tree

test-frame-common/src/main/java/io/skodjob/testframe/resources/KubeResourceManager.java

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,6 @@ public static KubeResourceManager get() {
126126
return INSTANCE;
127127
}
128128

129-
/**
130-
* Gets KubeResourceManager instance
131-
*
132-
* @return singleton instance
133-
*/
134-
@Deprecated(since = "0.9.0")
135-
public static KubeResourceManager getInstance() {
136-
return get();
137-
}
138-
139129
/**
140130
* Set the active context for this thread and auto‑restore on close.
141131
*
@@ -559,35 +549,6 @@ public final <T extends HasMetadata> void deleteResourceWithoutWait(T... resourc
559549
deleteResource(false, false, resources);
560550
}
561551

562-
/**
563-
* @deprecated as of release 0.13.0, use {@link #deleteResourceAsyncWait(HasMetadata[])} instead.
564-
*
565-
* Deletes resources.
566-
*
567-
* @param resources The resources to delete.
568-
* @param <T> The type of the resources.
569-
*/
570-
@SafeVarargs
571-
@Deprecated(since = "0.13.0")
572-
public final <T extends HasMetadata> void deleteResource(T... resources) {
573-
deleteResource(true, resources);
574-
}
575-
576-
/**
577-
* @deprecated as of release 0.13.0, use {@link #deleteResourceWithWait(HasMetadata[])} instead.
578-
*
579-
* Deletes resources.
580-
*
581-
* @param async Enables async deletion
582-
* @param resources The resources to delete.
583-
* @param <T> The type of the resources.
584-
*/
585-
@SafeVarargs
586-
@Deprecated(since = "0.13.0")
587-
public final <T extends HasMetadata> void deleteResource(boolean async, T... resources) {
588-
deleteResource(async, true, resources);
589-
}
590-
591552
/**
592553
* Deletes resources.
593554
*

0 commit comments

Comments
 (0)