# HG changeset patch # Parent a596a4b6e152e5182cbdd38f102f6f02c86e25fa # User Ralph Benjamin Ruijs [no commit message] diff --git a/refactoring.api/apichanges.xml b/refactoring.api/apichanges.xml --- a/refactoring.api/apichanges.xml +++ b/refactoring.api/apichanges.xml @@ -49,6 +49,21 @@ Refactoring API + + + Added method to remove value from Context. + + + + + +

+ Added the method remove to the refactoring Context. +

+
+ + +
Added RefactoringCommit and ModificationResult SPI classes. diff --git a/refactoring.api/nbproject/project.properties b/refactoring.api/nbproject/project.properties --- a/refactoring.api/nbproject/project.properties +++ b/refactoring.api/nbproject/project.properties @@ -4,5 +4,5 @@ javadoc.apichanges=${basedir}/apichanges.xml javadoc.title=Refactoring API -spec.version.base=1.23.0 +spec.version.base=1.24.0 test.config.stableBTD.includes=**/*Test.class diff --git a/refactoring.api/src/org/netbeans/modules/refactoring/api/Context.java b/refactoring.api/src/org/netbeans/modules/refactoring/api/Context.java --- a/refactoring.api/src/org/netbeans/modules/refactoring/api/Context.java +++ b/refactoring.api/src/org/netbeans/modules/refactoring/api/Context.java @@ -85,7 +85,9 @@ } /** - * Removes value instance from this context. + * Removes instance from this context. + * + * @since 1.24 */ public void remove(@NonNull Class clazz) { Parameters.notNull("clazz", clazz); // NOI18N diff --git a/refactoring.java/nbproject/project.xml b/refactoring.java/nbproject/project.xml --- a/refactoring.java/nbproject/project.xml +++ b/refactoring.java/nbproject/project.xml @@ -185,7 +185,7 @@ - 1.22 + 1.24