- 1
JSONObject jonReady = props.getObject(MessageType.Keys.onReady);
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 16
+74
JSONObject jonReady = props.getObject(MessageType.Keys.onReady);
Who is John Ready?
+68
public static String elvis(String value, String ifNull) {
return value == null ? ifNull : value;
}
public static Boolean elvis(Boolean value, Boolean ifNull) {
return value == null ? ifNull : value;
}
public static Object elvis(Object value, Object ifNull) {
return value == null ? ifNull : value;
}
- Objects#firstNotNull()?
- нет, не слышал
+75
ObservableStorage.ConfigurationTuple<Integer, ObservableStorage.ConfigurationTuple<Foo, ObservableStorage.ConfigurationTuple<Foo, ObservableStorage.ConfigurationEnd>>> build = RemoteObservableStorage
.configurationBuilder()
.use("foo").as(Foo.class)
.use("foo1").as(Foo.class)
.use("ids").as(Integer.class)
.build();
И тут Остапа понесло :)
Всем тайп сейфити посоны
+78
public class LocalizedMatcher implements Matcher, ContainsExtraTypeInformation, CapturesArguments, MatcherDecorator, Serializable {
...
public void _dont_implement_Matcher___instead_extend_BaseMatcher_() {
// yeah right
}
...
}
Порадовал именно коммент :)
+72
String isFeatureEnabled = object.get("featureEnabledParam");
boolean featureEnabled = app.isFeatureEnabled();
if (Boolean.parseBoolean(isFeatureEnabled) && !featureEnabled) {
return false;
}
if (!Boolean.parseBoolean(isFeatureEnabled) && featureEnabled)
{
return false;
}
−127
#! /bin/bash
find res -type f | grep "^.*\.html$" | xargs sed -i.backup -r 's/((\( ?([0-9]{3}) ?\))|(([0-9]{3}) ?\-)) ?([0-9]{3}) ?\- ?([0-9]{4})/\3\5\6\7/'
Фиксим формат номеров
+63
//START ADDING CODE HERE TODAY. !!
Прямо посреди класса
+73
if (fooTextField.getText().equalsIgnoreCase("")) {
Не то, чтобы очень говно...
Просто порадовало :)
+68
private void setFooMode() {
if (foo.isSelected()) { // is currently showing
App.appProps.put(Strings.BAR_MODE, Strings.TRUE);
}
else {
App.appProps.put(Strings.BAR_MODE, Strings.FALSE);
}
}
+69
void superFire(ActionEvent evt) {
super.fireActionPerformed(evt);
}
пиу-пиу!!111