From 458a27c98861e164524a0a0ce30e5b8e9a62baf2 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 12 Jan 2005 14:16:53 +0000 Subject: [PATCH] Removed old debugging output. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10696 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/storage/AppFileInfo.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/kits/storage/AppFileInfo.cpp b/src/kits/storage/AppFileInfo.cpp index 6b4e253bd5..d555b44752 100644 --- a/src/kits/storage/AppFileInfo.cpp +++ b/src/kits/storage/AppFileInfo.cpp @@ -427,7 +427,6 @@ BAppFileInfo::GetSupportedTypes(BMessage *types) const - \c B_NO_INIT: The object is not properly initialized. - other error codes */ -#include status_t BAppFileInfo::SetSupportedTypes(const BMessage *types, bool syncAll) { @@ -435,23 +434,19 @@ BAppFileInfo::SetSupportedTypes(const BMessage *types, bool syncAll) status_t error = B_OK; if (error == B_OK && InitCheck() != B_OK) error = B_NO_INIT; -printf("check\n"); BMimeType mimeType; if (error == B_OK) error = GetMetaMime(&mimeType); -printf("check\n"); if (error == B_OK) { if (types) { // check param -- supported types must be valid const char *type; -printf("check1\n"); for (int32 i = 0; error == B_OK && types->FindString("types", i, &type) == B_OK; i++) { if (!BMimeType::IsValid(type)) error = B_BAD_VALUE; } -printf("check1\n"); // get flattened size ssize_t size = 0; if (error == B_OK) { @@ -459,7 +454,6 @@ printf("check1\n"); if (size < 0) error = size; } -printf("check1\n"); // allocate a buffer for the flattened data char *buffer = NULL; if (error == B_OK) { @@ -467,28 +461,23 @@ printf("check1\n"); if (!buffer) error = B_NO_MEMORY; } -printf("check1\n"); // flatten the message if (error == B_OK) error = types->Flatten(buffer, size); -printf("check1\n"); // write the data if (error == B_OK) { error = _WriteData(kSupportedTypesAttribute, kSupportedTypesResourceID, B_MESSAGE_TYPE, buffer, size); } -printf("check1\n"); // clean up if (buffer) delete[] buffer; } else error = _RemoveData(kSupportedTypesAttribute, B_MESSAGE_TYPE); -printf("check\n"); // update the MIME database, if the app signature is installed if (error == B_OK && mimeType.IsInstalled()) error = mimeType.SetSupportedTypes(types, syncAll); -printf("check\n"); } return error; }