comment your code

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:smile: :sad: :eek: :shock: :cool: :-x :razz: :oops: :evil: :twisted: :wink: :idea: :arrow: :neutral: :mrgreen:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: comment your code

by Ice Cream Jonsey » Fri Jul 21, 2006 9:36 pm

I enjoy deploying JSPs. Who knew that after 32 years and, ooooooooooh tens of thousands of lines of code that the magic would be in Java all along.

by Ice Cream Jonsey » Sat Mar 11, 2006 2:33 am

Well, I'm sure your next thread, "comment on my post" will do better.

comment your code

by pinback » Fri Mar 03, 2006 11:13 am

// MAJOR BIG HACK TO BE REMOVED BEFORE THIS GOES INTO PRODUCTION
// OKAY??
//
// HERE, I'LL PUT SOME STARS HERE SO YOU CAN SEE HOW IMPORTANT IT IS
// TO REMEMBER THIS:
//
// ********* *** * ** * *** * *** * ** * ** *
// ** ** * * * * * ** * ** * ** * ** ***** ** * *
boolean isBad = true;
for (Iterator iter = translatedVehicleTrimMap.values().iterator(); iter.hasNext();) {
Object o = iter.next();
if (o!=null) {
isBad = false;
}
}
if (isBad) {
VehicleTrim defaultTrim = new VehicleTrim();
defaultTrim.setId(new Long(5940)); // Ford F-150!
translatedVehicleTrimMap = vehicleDataTranslator.translateToAll(defaultTrim);
}

// REMEMBER! TAKE THE ABOVE HACK OUT! STAR STARSTARSTAR STARSTAR!!!!!

Top