Ad
  • Custom User Avatar

    i have completed unit tests successfully but if i submit them to server i get unknown error.
    does that mean i get infinite loop or something? thanks

    edit: i am using java

    edit: i have solved the issue. it is because i have code that looked like this

    if (blahblah // some comment
        || blehbleh ) { // another comment
        some_statements();
    }
    

    i fixed it by having if construct terminate properly before commenting.