- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
public List<LDAPUserState> getAllLDAPUsersFromAD() {
try {
ldc.getAllLDAPUsers();
} catch (NamingException e) {
LOG.error(e.getMessage(), e);
}
return null;
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+67
public List<LDAPUserState> getAllLDAPUsersFromAD() {
try {
ldc.getAllLDAPUsers();
} catch (NamingException e) {
LOG.error(e.getMessage(), e);
}
return null;
}
+142
private boolean get(CharArrayExt szNum, CountryAreaContainer container) {
char cCur = 0;
if(!szNum.isEmpty()) {
cCur = szNum.charAt(0);
}
Country lpSettingsCountry = isRemoveNPrefixAfterCC();
if ((cCur != 0) && lpSettingsCountry != null) {
int iLen = lpSettingsCountry.getNationalPrefix().length();
if ((iLen > 0) && szNum.startsWith(lpSettingsCountry.getNationalPrefix())) {
szNum.cut(iLen);
cCur = szNum.charAt(0);
container.areaOffset = iLen;
}
}
if ((cCur != 0) && isNodeExist(cCur)) {
if(getNode(cCur).get(szNum.cut(1), container)) {
return true;
}
}
int iCount = items.size();
if (iCount == 1) { //Normally
NodeItemBase lpItem = items.get(0);
if (lpItem.isArea()) {
container.area = (Area) lpItem;
}
container.country = lpItem.getCountry();
return true;
} else {
if (iCount > 1) {
for (int i = 0; i < iCount; i++) {
NodeItemBase lpItem = items.get(i);
if (lpItem.isCountry()) {
Country lpCountry = (Country) lpItem;
if (lpCountry.getAreas().size() == 0) {
container.country = lpCountry;
return true;
}
}
}
}
}
return false;
}
Кто писал этот код - знайте, Я Вас НЕНАВИЖУ!!!
+144
public String tommorowCalendarCountry(String date, String country){
String tommorowCountry = null;
if(date.equals(getTommorow())){
tommorowCountry = country;
}
return tommorowCountry;
}
public String tommorowCalendarIndicator(String date, String indicator){
String tommorowIndicator = null;
if(date.equals(getTommorow())){
tommorowIndicator = indicator;
}
return tommorowIndicator;
}
public String tommorowCalendarImportance(String date, String importance){
String tommorowImportance = null;
if(date.equals(getTommorow())){
tommorowImportance = importance;
}
return tommorowImportance;
}
public String tommorowCalendarForecast(String date, String forecast){
String tommorowForecast = null;
if(date.equals(getTommorow())){
tommorowForecast = forecast;
}
return tommorowForecast;
}
public String tommorowCalendarPrevious(String date, String previous){
String tommorowPrevious = null;
if(date.equals(getTommorow())){
tommorowPrevious = previous;
}
return tommorowPrevious;
}
public String tommorowCalendarActual(String date, String actual){
String tommorowActual = null;
if(date.equals(getTommorow())){
tommorowActual = actual;
}
return tommorowActual;
}
public String tommorowCalendarDescription(String date, String description){
String tommorowDescription = null;
if(date.equals(getTommorow())){
tommorowDescription = description;
}
return tommorowDescription;
}
public String tommorowCalendarPeriod(String date, String period){
String tommorowPeriod = null;
if(date.equals(getTommorow())){
tommorowPeriod = period;
}
return tommorowPeriod;
}
public String tommorowCalendarLocation(String date, String location){
String tommorowLocation = null;
if(date.equals(getTommorow())){
tommorowLocation = location;
}
return tommorowLocation;
}
пришло с аутсорса. Такого в проекте очень много)
+143
if(memberIdList == null || memberIdList.size() < 0) {
return setOfThousandMembers;
}
+144
// ====================== БОЛЬШОЕ Спасибо разработчикам архитектуры FzMobile (GI Center)=====================
// =============================== Очень удобно трэкать пурчейсы через вьюшку ================================
// Почему бы и не заинитить вьюшку на статическом контексте.
/* final FzView fzView = new FzView(sRelatedApplication);
// Тут мы тупо дадим отдохнуть процесору,
// и понадеемся, что во время отдыха их сервис все тами, каким то чудом, поднимется.
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
FzController fzController = null;
for (int i = 0 ; i < 4; i++){ // Паттерн "настойчивость(с)" был взаимствован непосредственно из их архитектуры.
fzController = fzView.getController();
}
try{ // а тут может и пиздануться.
final float fPrice = price/100f;
fzController.savePayment(id, "gbp", fPrice, "gbp", fPrice); // даже и не спрашивайте что это за дублирование....
}catch (Throwable t){
t.printStackTrace();
}
}
},555*//*а почему бы и нет*//*);*/ // - слава Аллаху, мы выпилили эту хуету!
//==============================================================================================
+141
// Насладитесь
final String[] array_spinner_drinks = new String[20];
array_spinner_drinks[0] = "1";
array_spinner_drinks[1] = "2";
array_spinner_drinks[2] = "3";
array_spinner_drinks[3] = "4";
array_spinner_drinks[4] = "5";
array_spinner_drinks[5] = "6";
array_spinner_drinks[6] = "7";
array_spinner_drinks[7] = "8";
array_spinner_drinks[8] = "9";
array_spinner_drinks[9] = "10";
array_spinner_drinks[10] = "11";
array_spinner_drinks[11] = "12";
array_spinner_drinks[12] = "13";
array_spinner_drinks[13] = "14";
array_spinner_drinks[14] = "15";
array_spinner_drinks[15] = "16";
array_spinner_drinks[16] = "17";
array_spinner_drinks[17] = "18";
array_spinner_drinks[18] = "19";
array_spinner_drinks[19] = "20";
spinner_drinks = (Spinner) findViewById(R.id.spinner_drinks);
final ArrayAdapter<String> adapter_drinks = new ArrayAdapter<>(this,
android.R.layout.simple_spinner_item,
array_spinner_drinks);
spinner_drinks.setAdapter(adapter_drinks);
// load weight spinner with array
final String[] array_spinner_weight = new String[34];
array_spinner_weight[0] = "70";
array_spinner_weight[1] = "80";
array_spinner_weight[2] = "90";
array_spinner_weight[3] = "100";
array_spinner_weight[4] = "110";
array_spinner_weight[5] = "120";
array_spinner_weight[6] = "130";
array_spinner_weight[7] = "140";
array_spinner_weight[8] = "150";
array_spinner_weight[9] = "160";
array_spinner_weight[10] = "170";
array_spinner_weight[11] = "180";
array_spinner_weight[12] = "190";
array_spinner_weight[13] = "200";
array_spinner_weight[14] = "210";
array_spinner_weight[15] = "220";
array_spinner_weight[16] = "230";
array_spinner_weight[17] = "240";
array_spinner_weight[18] = "250";
array_spinner_weight[19] = "260";
array_spinner_weight[20] = "270";
array_spinner_weight[21] = "280";
array_spinner_weight[22] = "290";
array_spinner_weight[23] = "300";
array_spinner_weight[24] = "310";
array_spinner_weight[25] = "320";
array_spinner_weight[26] = "330";
array_spinner_weight[27] = "340";
array_spinner_weight[28] = "350";
array_spinner_weight[29] = "360";
array_spinner_weight[30] = "370";
array_spinner_weight[31] = "380";
array_spinner_weight[32] = "390";
array_spinner_weight[33] = "400";
spinner_weight = (Spinner) findViewById(R.id.spinner_weight);
final ArrayAdapter<String> adapter_weight = new ArrayAdapter(this,
android.R.layout.simple_spinner_item,
array_spinner_weight);
spinner_weight.setAdapter(adapter_weight);
Я у мамы программист
+141
private boolean get(CharArrayExt szNum, CountryAreaContainer container) {
char cCur = 0;
if(!szNum.isEmpty()) {
cCur = szNum.charAt(0);
}
Country lpSettingsCountry = isRemoveNPrefixAfterCC();
if ((cCur != 0) && lpSettingsCountry != null) {
//Special processing for numbers like +44(0)204445555
int iLen = lpSettingsCountry.getNationalPrefix().length();
if ((iLen > 0) && szNum.startsWith(lpSettingsCountry.getNationalPrefix())) {
szNum.cut(iLen);
cCur = szNum.charAt(0);
container.areaOffset = iLen;
}
}
if ((cCur != 0) && isNodeExist(cCur)) {
if(getNode(cCur).get(szNum.cut(1), container)) {
return true;
}
}
int iCount = getItemsCount();
if (iCount == 1) { //Normally
NodeItemBase lpItem = getItems().get(0);
if (lpItem.isArea()) {
container.area = (Area) lpItem;
}
container.country = lpItem.getCountry();
return true;
} else {
if (iCount > 1) {
for (int i = 0; i < iCount; i++) {
NodeItemBase lpItem = getItems().get(i);
if (lpItem.isCountry()) {
Country lpCountry = (Country) lpItem;
if (lpCountry.getAreas().size() == 0) {
container.country = lpCountry;
return true;
}
}
}
}
}
return false;
}
+142
File f = new File(Environment.getExternalStorageDirectory().toString());
for (File temp : f.listFiles()) {
if (temp.getName().equals("temp.jpg")) {
f = temp;
break;
}
}
Мне больно
+78
if (optional != null && optional.isPresent()) {
...
+142
public int func_175687_A(BlockPos p_175687_1_)
{
int var2 = 0;
EnumFacing[] var3 = EnumFacing.values();
int var4 = var3.length;
for (int var5 = 0; var5 < var4; ++var5)
{
EnumFacing var6 = var3[var5];
int var7 = this.getRedstonePower(p_175687_1_.offset(var6), var6);
if (var7 >= 15)
{
return 15;
}
if (var7 > var2)
{
var2 = var7;
}
}
return var2;
}
Notch видимо не слышал про Math.Max