- 1
return $('#edit-btn').parent().parent().children().first().html().split('<')[0];
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 14
+2
return $('#edit-btn').parent().parent().children().first().html().split('<')[0];
−16
public static String getPolicyByProtection(String protection) {
for (final Map.Entry<String, Protection> entry : getProtectionTable().entrySet()) {
if (StringUtils.equalsIgnoreCase(protection, entry.getKey())) {
return entry.getValue().policy;
}
}
return null;
}
+6
StringBuilder text = new StringBuilder();
for (char letter : section.getName().toCharArray()){
text.append(Character.toUpperCase(letter));
}
Вот так мы приводим текст к верхнему регистру
+68
// setting simple fields that couldn't be null
if (firstOperDay != null) {
dto.setFirstClosedDay(firstOperDay);
} else {
dto.setFirstClosedDay(null);
}
if (lastOperDay != null) {
dto.setLastClosedDay(lastOperDay);
} else {
dto.setLastClosedDay(null);
}
+70
private boolean isVincodeDisabled() {
if (Long.valueOf(PaymentValidationStatus.vin_code_incorrect.getValue()).equals(paymentDTO.getErrorCode())) {
return false;
} else if (paymentDTO.getVincode() == null) {
return true;
} else {
return false;
}
}
−168
SELECT DISTINCT torg.m_org_id FROM m_org torg
INNER JOIN r_message_out mo ON mo.m_org_id = torg.m_org_id
INNER JOIN m_day od ON mo.m_day_id = decode((od.m_day_id - 1), 0,1,(od.m_day_id - 1))
...
Связь с предыдущим днем в join
+68
if (!(taxOrgsFilter.getTaxOrgs() == null)) {
....
}
+75
private void executeUiOperation(final UiOperation operation, final Boolean documentReadOnly) {
boolean readOnly = !edit;
if (documentReadOnly != null) {
readOnly |= documentReadOnly;
}
//....
Кручу-верчу запутать хочу...
+74
//code...
item.setInUse((map.getnStreamActive().equals("1") ? true : false));
//...code
Писал тим лид одного из вендоров проекта.
nStreamActive - Integer
+81
/*
* Copyright 2009 Sun Microsystems, Inc.
* All rights reserved. You may not modify, use,
* reproduce, or distribute this software except in
* compliance with the terms of the License at:
* http://developer.sun.com/berkeley_license.html
*/
package cart.util;
public class IdVerifier {
public IdVerifier() {
}
public boolean validate(String id) {
boolean result = true;
for (int i = 0; i < id.length(); i++) {
if (Character.isDigit(id.charAt(i)) == false) {
result = false;
}
}
return result;
}
}
Java EE tutorial