if (tAnswerer.PLURK_USER_NAME != null && tAnswerer.PLURK_USER_NAME.isEmpty()) tAnswerer.PLURK_USER_NAME = pAnswererPlurkNickName;
tObjectify.put( tAnswerer );
// now we add to the daily point score
PlurkPlayerDailyPoint tAnswererDailyPoint = null;
long tyyyyMMddDate = Long.parseLong( new SimpleDateFormat( "yyyyMMdd" ).format( Calendar.getInstance( TimeZone.getTimeZone( "UTC" ) ).getTime() ) );
long tDailyPointKey = Long.parseLong( pAnswererPlurkID + "" + tyyyyMMddDate );
try
{
tAnswererDailyPoint = tObjectify.get( PlurkPlayerDailyPoint.class, tDailyPointKey );
}
catch (NotFoundException ex)
{
// expected
tAnswererDailyPoint = new PlurkPlayerDailyPoint(pAnswererPlurkID, tyyyyMMddDate, pAnswererPlurkNickName);
}
tAnswererDailyPoint.POINT = tAnswererDailyPoint.POINT + 10;
tObjectify.put( tAnswererDailyPoint );