Личный кабинет
Укажите e-mail, на который будет выслан код восстановления пароля.
На указанный вами адрес e-mail был выслан код подтверждения аккаунта. Введите полученный код для продолжения:
Введите новый пароль два раза:
On Thu, 29 Jul 2021 at 15:44, Bhavesh Mistry <bhavesh.mistry13@gmail.com> wrote:Hi Dave,It still does not address the NPE issue. If an alias is NULL. What should be the behavior?public String getTypeForAlias(String alias) {String type = TYPE_ALIASES.get(alias);if (type != null) {return type; } type = TYPE_ALIASES.get(alias.toLowerCase()) // NPE STILL HERE;if (type == null) { type = alias; }//populate for future useTYPE_ALIASES.put(alias, type);return type; } Very good question. I guess we should return null in this case.I'll fix thatDave
Hi Dave,It still does not address the NPE issue. If an alias is NULL. What should be the behavior?public String getTypeForAlias(String alias) {String type = TYPE_ALIASES.get(alias);if (type != null) {return type; } type = TYPE_ALIASES.get(alias.toLowerCase()) // NPE STILL HERE;if (type == null) { type = alias; }//populate for future useTYPE_ALIASES.put(alias, type);return type; }
В списке pgsql-general по дате отправления: