Thursday, May 24, 2007

Oh, to be paid by the line of code

Two entries from the "not adding much value" file today.


public void ShowCursor(Cursor cursor)
{
const string fn = "ShowCursor()";

if(log.IsDebugEnabled)
log.Debug("Entering " + fn);

this.Cursor = cursor;

if(log.IsDebugEnabled)
log.Debug("Exiting " + fn);
}

///
/// Initialize the webservice calls
///

public void Initialize()
{
const string fn = "Initialize(): ";
log.Debug("Entering " + fn);
}

()
()

0 comments: