GT-3405 - Fixed NPE when deleting bookmarks

This commit is contained in:
dragonmacher 2019-12-17 11:59:39 -05:00
parent b79aaca9d5
commit 73a3effe02
4 changed files with 78 additions and 123 deletions

View file

@ -116,7 +116,7 @@ public final class NamingUtilities {
* @see #isValidName(String)
* @deprecated this method may be removed in a subsequent release due to
* limited use and applicability (project names and project file names have
* different naming resrictions).
* different naming restrictions).
*/
@Deprecated
public static char findInvalidChar(String name) {
@ -169,7 +169,7 @@ public final class NamingUtilities {
* chars in a row are replace by a single MANGLE_CHAR.
*
* @param mangledName mangled name string
* @return demagle name
* @return demangle name
*/
public static String demangle(String mangledName) {
int len = mangledName.length();