nacos
nacos copied to clipboard
some Nonstandard naming in EnvUtil
look this
if (headers != null) {
List<String> amorayTagTmp = headers.get(AMORY_TAG);
if (amorayTagTmp == null) {
if (selfAmorayTag != null) {
selfAmorayTag = null;
LOGGER.warn("selfAmoryTag:null");
}
} else {
String amorayTagTmpStr = listToString(amorayTagTmp);
if (!amorayTagTmpStr.equals(selfAmorayTag)) {
selfAmorayTag = amorayTagTmpStr;
LOGGER.warn("selfAmoryTag:{}", selfAmorayTag);
}
}
List<String> vipserverTagTmp = headers.get(VIPSERVER_TAG);
if (vipserverTagTmp == null) {
if (selfVipserverTag != null) {
selfVipserverTag = null;
LOGGER.warn("selfVipserverTag:null");
}
} else {
String vipserverTagTmpStr = listToString(vipserverTagTmp);
if (!vipserverTagTmpStr.equals(selfVipserverTag)) {
selfVipserverTag = vipserverTagTmpStr;
LOGGER.warn("selfVipserverTag:{}", selfVipserverTag);
}
}
List<String> locationTagTmp = headers.get(LOCATION_TAG);
if (locationTagTmp == null) {
if (selfLocationTag != null) {
selfLocationTag = null;
LOGGER.warn("selfLocationTag:null");
}
} else {
String locationTagTmpStr = listToString(locationTagTmp);
if (!locationTagTmpStr.equals(selfLocationTag)) {
selfLocationTag = locationTagTmpStr;
LOGGER.warn("selfLocationTag:{}", selfLocationTag);
}
}
}
the amorayTagTmp ,amorayTagTmpStr,vipserverTagTmp,vipserverTagTmpStr all is not good name style;