get rid of excess logging

This commit is contained in:
eehouse 2010-03-21 03:10:47 +00:00
parent 0b7eee672a
commit 5806aa0aca
4 changed files with 0 additions and 12 deletions

View file

@ -336,7 +336,6 @@ parseDict( AndDictionaryCtxt* ctxt, XP_U8* ptr, XP_U32 dictLength )
static void
and_dictionary_destroy( DictionaryCtxt* dict )
{
LOG_FUNC();
AndDictionaryCtxt* ctxt = (AndDictionaryCtxt*)dict;
XP_U16 nSpecials = andCountSpecials( ctxt );
XP_U16 ii;
@ -368,8 +367,6 @@ and_dictionary_destroy( DictionaryCtxt* dict )
XP_FREE( ctxt->super.mpool, ctxt->bytes );
XP_FREE( ctxt->super.mpool, ctxt );
LOG_RETURN_VOID();
}
jobject

View file

@ -292,7 +292,6 @@ makeBitmapsArray( JNIEnv* env, const XP_Bitmaps* bitmaps )
void
setJAddrRec( JNIEnv* env, jobject jaddr, const CommsAddrRec* addr )
{
LOG_FUNC();
XP_ASSERT( !!addr );
intToJenumField( env, jaddr, addr->conType, "conType",
"org/eehouse/android/xw4/jni/CommsAddrRec$CommsConnType" );
@ -314,7 +313,6 @@ setJAddrRec( JNIEnv* env, jobject jaddr, const CommsAddrRec* addr )
default:
XP_ASSERT(0);
}
LOG_RETURN_VOID();
}
void
@ -362,7 +360,6 @@ jenumFieldToInt( JNIEnv* env, jobject j_gi, const char* field,
(*env)->DeleteLocalRef( env, clazz );
(*env)->DeleteLocalRef( env, jenum );
LOG_RETURNF( "%d", result );
return result;
}

View file

@ -510,7 +510,6 @@ makeDraw( MPFORMAL JNIEnv** envp, jobject jdraw )
void
destroyDraw( DrawCtx** dctx )
{
LOG_FUNC();
AndDraw* draw = (AndDraw*)*dctx;
JNIEnv* env = *draw->env;
if ( NULL != draw->jdraw ) {
@ -528,5 +527,4 @@ destroyDraw( DrawCtx** dctx )
XP_FREE( draw->mpool, draw->vtable );
XP_FREE( draw->mpool, draw );
*dctx = NULL;
LOG_RETURN_VOID();
}

View file

@ -31,7 +31,6 @@ typedef struct _AndTransportProcs {
static jobject
makeJAddr( JNIEnv* env, const CommsAddrRec* addr )
{
LOG_FUNC();
jobject jaddr = NULL;
if ( NULL != addr ) {
jclass clazz
@ -47,7 +46,6 @@ makeJAddr( JNIEnv* env, const CommsAddrRec* addr )
(*env)->DeleteLocalRef( env, clazz );
}
LOG_RETURNF( "%p", jaddr );
return jaddr;
}
@ -155,7 +153,6 @@ makeXportProcs( MPFORMAL JNIEnv** envp, jobject jxport )
void
destroyXportProcs( TransportProcs** xport )
{
LOG_FUNC();
AndTransportProcs* aprocs = (AndTransportProcs*)*xport;
JNIEnv* env = *aprocs->envp;
if ( NULL != aprocs->jxport ) {
@ -164,5 +161,4 @@ destroyXportProcs( TransportProcs** xport )
XP_FREE( aprocs->mpool, aprocs );
*xport = NULL;
LOG_RETURN_VOID();
}