1. Список говнокодов пользователя gvsmirnov

    Всего: 2

  2. Java / Говнокод #3432

    +83

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    try {
        //snipped
    } catch(OmgExtremeCriticalEmergencyException ignored) {
        //not important
    }

    gvsmirnov, 10 Июня 2010

    Комментарии (10)
  3. Java / Говнокод #2593

    +84.4

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    public class Pair
      {
          private Object first;
          private Object second;
          private Object third;
    
          public Pair() { }
          public Pair( Object first, Object second, Object third )
          {
              this.first  = first;
              this.second  = second;
              this.third  = third;
          }
    
          public Object getFirst()  { return first; }
          public Object getSecond() { return second; }
          public Object getThird()  { return third; }
    
          public void setFirst( Object first  )  { this.first  = first; }
          public void setSecond( Object second ) { this.second  = second; }
          public void setThird( Object third  )  { this.third  = third; }
      }

    Что-то здесь не так...

    gvsmirnov, 11 Февраля 2010

    Комментарии (11)