We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f19f5 commit a8d8e6cCopy full SHA for a8d8e6c
operator-framework/src/main/java/io/javaoperatorsdk/operator/api/ResourceController.java
@@ -27,11 +27,4 @@ public interface ResourceController<R extends CustomResource> {
27
* <b>However we will always call an update if there is no finalizer on object and its not marked for deletion.</b>
28
*/
29
UpdateControl<R> createOrUpdateResource(R resource, Context<R> context);
30
-
31
- // What about we let developer to set the finalizer Name through overriding
32
- // this method rather than setting it as attribute in annotation?
33
- default String getDefaultFinalizerName() {
34
- return this.getClass().getCanonicalName();
35
- }
36
37
}
0 commit comments