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

    Всего: 2

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

    +68

    1. 1
    2. 2
    3. 3
    StringBuffer serialNum = new StringBuffer ();
    for (int i = 0; i < 0; i++)
           serialNum = serialNum.append (Byte.toString (serial[ i ]));

    john812, 02 Августа 2013

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

    +69

    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
    protected String getException (final Exception exception) throws IOException
    {
            final ByteArrayOutputStream bos = new ByteArrayOutputStream ();
            try
            {
                final PrintStream ps = new PrintStream (bos);
                exception.printStackTrace (ps);
            }
            finally
            {
                bos.close ();
            }
    
            return bos.toString ();
    }

    john812, 25 Июля 2013

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