So, i was looking trough some of the code of an application i've wrote some time ago (
http://www.engineeringser...12/28/tenant-application/ ) and I noticed that for some reason I wrote some really useless comment in my code. Check this:
GeSHi (java):
//Since i don't have a printer here i cant write and test a printer application..
//so i wrote a CLI letter.
public void printWaitingLetter(){
System.
out.
println("*************Printing waiting letter*****************");
System.
out.
println("Name:\t\t " + nameResult
);
System.
out.
println("Adress:\t\t " + adressResult
);
System.
out.
println("Postcode:\t\t " + postcodeResult
);
System.
out.
println("Phone:\t\t " + phoneResult
);
System.
out.
println("Renting:\t " + rentingResult
);
System.
out.
println("Details: your request is confirmed and waiting.");
System.
out.
println("*****************************************************");
}
Created by GeSHI 1.0.7.20
GeSHi (java):
JLabel rentingLbl =
new JLabel("Already renting?");
// already renting? String options
[] =
{"unknown" ,
"yes",
"no"};
Created by GeSHI 1.0.7.20
Anyone else wrote comment in their code that were totally unneccesary and makes you wanna laugh after reading it a few months later ?
