diff --git a/news/4.30/images/constant-renaming.png b/news/4.30/images/constant-renaming.png new file mode 100644 index 000000000..c2f841426 Binary files /dev/null and b/news/4.30/images/constant-renaming.png differ diff --git a/news/4.30/jdt.html b/news/4.30/jdt.html index dcd349a50..301f58a80 100644 --- a/news/4.30/jdt.html +++ b/news/4.30/jdt.html @@ -126,6 +126,17 @@

Java Editor

The functionality is also available as a quick fix for an individual call to a deprecated method that is marked with warning or error. One can also select a deprecated method call and initiate as a quick assist (select call and click CTRL + 1). + + + Quick assist to rename constant fields + + A new quick assist has been added to rename static constant fields to follow a standard syntax using upper-case and underscores rather than camel case. + To use: select the constant and click CTRL+1. + For example, +

rename constant quick assist

+ will offer to rename the constant "valConstant1" to "VAL_CONSTANT1". + +