- 1
hideVoting = (disabled || getVisitor().isAnonymous()) ? true : false;
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+143.5
hideVoting = (disabled || getVisitor().isAnonymous()) ? true : false;
+149
/**
* Я, функция, которая поможет узнать дату текущего дня
* @return Я вам верну дату текущего дня
*/
public String iGetDate() {
Date date = new Date();
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
return dateFormat.format(date);
}
Каменты излишни
+143.6
if ("MOCK_CATEGORY".equals(esbCategoryName) && "MOCK_SERVICE".equals(esbServiceName))
{
response = request;
}
Исходник Jboss Jpdl
+145.5
String labOrderOrMrnParam = (null == order)
? order.getMayoAccessNumber() : order.getOrderNumber();
Что же делать если объект - null
+154
return !( Pattern.compile("['\"`]+").matcher(query.subSequence(0, query.length())).matches());
Шедевр проверки на запретные символы в запросе
+134.9
// Объявлен класс GOSTDocument extends TechDocument ( ввожу в курс дела:) )
public class TechDocument
{
protected TechDocument(){} //Ибо нефиг
public TechDocument getDocumentA ( Type DocType )
{
TechDocument tmpl = null;
switch (DocType)
{
case DOCTYPE_GOST : tmpl = (GOSTDocument) new GOSTDocument();
break;
// ... Тут еще CASE всякие
default: tmpl = new TechDocument();
break;
}
return tmpl;
}
}
Как бы кастинг.:)
+78.5
if (choice==0)
new Browser(null, display, this, this, false);
if (choice==1)
new Browser(null, display, this, this, true);
if (choice==2)
new Browser(null, display, this, this, false);
if (choice==3)
new Browser(null, display, this, this, true);
if (choice==4)
new Browser(null, display, this, this, false);
if (choice==5)
new Browser(null, display, this, this, true);
if (choice==6)
new Browser(null, display, this, this, false);
if (choice==7)
new Browser(null, display, this, this, true);
Сохранить, загрузить, сохранить, загрузить...
+146
/**
* @see java.lang.Comparable#compareTo(java.lang.Object)
*/
public int compareTo( HandValue pValue ) throws NullPointerException
{
if(getCategory() == null || pValue.getCategory() == null || mTopCards == null)
throw new NullPointerException();
int toReturn = getCategory().compareTo(pValue.getCategory());
if(toReturn != 0)
return toReturn;
for(int i = 0; getCard(i) != null; i++)
{
toReturn = getCard(i).compareTo(pValue.getCard(i));
if(toReturn != 0)
return toReturn;
}
return 0;
}
очень долго смеялся, увидев этот код.
+89.1
public boolean equals(Object o) {
ErrorCode errorCode = (ErrorCode) o;
return !(code != null ? !code.equals(errorCode.code) : errorCode.code != null);
}
бля. голову поломать можно
+145.9
double dotProduct(double vec[]) {
int k, m, v;
double rtn;
rtn = 0.0;
k = vec.length / 4;
m = vec.length % 4;
v = 0;
while ((k--) > 0) {
rtn += vec[v];
rtn += vec[v + 1];
rtn += vec[v + 2];
rtn += vec[v + 3];
v += 4;
}
while ((m--) > 0) {
rtn += vec[v];
v++;
}
return rtn;}
разбираю ocr-апплетик.. нашел вот такой интересный метод.. для лучшего восприятия говнокода, убрал одну переменную(было типа "+=vec1[v]*vec2[v]")