- 1
- 2
- 3
int createStageCycles = 0;
createStageCycles = Integer.parseInt(strCycle);
int nextVal = new Integer(createStageCycles) + 1;
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 5
+86
int createStageCycles = 0;
createStageCycles = Integer.parseInt(strCycle);
int nextVal = new Integer(createStageCycles) + 1;
int двойного отжима
+75
boolean retval = serviceCategory.equalsIgnoreCase("transportation");
if (retval) {
String serviceLocation = bp.getParameterValueObjectFromAnyComponent("ReqTDQuestions", "svcLocation") + "";
if(serviceLocation.equalsIgnoreCase("GreaterChina")) {
retval=true;
}
}
return retval;
После деобфускации получаем:
return serviceCategory.equalsIgnoreCase("transp ortation");
+66
if (!retval){
String svcLocation = bp.getParameterValueObjectFromAnyComponent("ReqTDQuestions", "svcLocation") + "";
if (svcLocation.contains("GreaterChina")){
retval=true;
}
}
if(!retval){
String svcCategory = bp.getParameterValueObjectFromAnyComponent("ReqTDQuestions", "svcCategory") + "";
if(svcCategory.contains("ValueAddedServices") ||
svcCategory.contains("distWarehouse") ||
svcCategory.contains("transportation")){
retval =true;
}
}
элегантно.
+72
/**
* @return node with values
*/
public FQNode getValueGetter() {
return data;
}
accessor c повышенной энтропией, хуле
+77
private String isMasterExecuted(Bundle bl) {
String taskName = (String) bl.get("activeTaskName").toString();
String isExecuted = "No";
if(taskName.equals("Manage")) {
isExecuted = "Yes";
}
return isExecuted;
}
код индийского коллеги. С булевым типом он не знаком.