merge wrt-plugins-tizen_0.2.0-2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Contact / JSContactOrganizationArray.cpp
index 83aa7a6..a11fe0b 100755 (executable)
@@ -99,7 +99,6 @@ JSValueRef JSContactOrganizationArray::getLength(JSContextRef context,
                JSStringRef propertyName,
                JSValueRef* exception)
 {
-       //LogDebug("enter");
        Try
        {
                JSContactOrganizationArrayPriv* priv =
@@ -164,12 +163,10 @@ JSClassRef JSContactOrganizationArray::getClassRef()
 void JSContactOrganizationArray::initialize(JSContextRef context,
                JSObjectRef object)
 {
-       //LogDebug("enter");
 }
 
 void JSContactOrganizationArray::finalize(JSObjectRef object)
 {
-       //LogDebug("enter");
        JSContactOrganizationArrayPriv* priv =
                static_cast<JSContactOrganizationArrayPriv*>(JSObjectGetPrivate(object));
        delete priv;
@@ -180,7 +177,6 @@ bool JSContactOrganizationArray::hasProperty(JSContextRef context,
                JSObjectRef object,
                JSStringRef propertyName)
 {
-       //LogDebug("enter");
        ContactConverterFactory::ConverterType converter =
                        ContactConverterFactory::getConverter(context);
        Try
@@ -208,7 +204,6 @@ JSValueRef JSContactOrganizationArray::getProperty(JSContextRef context,
                JSStringRef propertyName,
                JSValueRef* exception)
 {
-       //LogDebug("enter");
        ContactConverterFactory::ConverterType converter =
                        ContactConverterFactory::getConverter(context);
        Try
@@ -240,7 +235,6 @@ bool JSContactOrganizationArray::setProperty(JSContextRef context,
                JSValueRef value,
                JSValueRef* exception)
 {
-       //LogDebug("enter");
        ContactConverterFactory::ConverterType converter =
                        ContactConverterFactory::getConverter(context);
        Try
@@ -280,7 +274,6 @@ JSValueRef JSContactOrganizationArray::concat(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("enter");
        Try
        {
                ContactOrganizationArrayPtr organizations = ContactOrganizationArrayPtr(new ContactOrganizationArray());
@@ -326,7 +319,6 @@ JSValueRef JSContactOrganizationArray::join(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        Try
        {
                std::string result;
@@ -362,7 +354,6 @@ JSValueRef JSContactOrganizationArray::pop(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        Try
        {
                ContactConverterFactory::ConverterType converter =
@@ -391,7 +382,6 @@ JSValueRef JSContactOrganizationArray::push(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        Try
        {
                ContactConverterFactory::ConverterType converter =
@@ -418,7 +408,6 @@ JSValueRef JSContactOrganizationArray::reverse(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        Try
        {
                ContactConverterFactory::ConverterType converter =
@@ -443,7 +432,6 @@ JSValueRef JSContactOrganizationArray::shift(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        Try
        {
                ContactConverterFactory::ConverterType converter =
@@ -471,7 +459,6 @@ JSValueRef JSContactOrganizationArray::slice(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("enter");
        Try
        {
                if (argumentCount < 1) {
@@ -521,7 +508,6 @@ JSValueRef JSContactOrganizationArray::sort(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        Try
        {
                ContactConverterFactory::ConverterType converter =
@@ -546,7 +532,6 @@ JSValueRef JSContactOrganizationArray::splice(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        return JSValueMakeUndefined(context);
 }
 
@@ -557,7 +542,6 @@ JSValueRef JSContactOrganizationArray::toString(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        return join(context, function, thisObject, 0, arguments, exception);
 }
 
@@ -568,7 +552,6 @@ JSValueRef JSContactOrganizationArray::unshift(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        return JSValueMakeUndefined(context);
 }
 
@@ -579,7 +562,6 @@ JSValueRef JSContactOrganizationArray::valueOf(JSContextRef context,
                const JSValueRef arguments[],
                JSValueRef* exception)
 {
-       //LogDebug("entered");
        return JSValueMakeUndefined(context);
 }