Skip to content

Commit 4ca154e

Browse files
Update resource.cpp
1 parent ccdd95d commit 4ca154e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

runtime/src/altv-c-api/resource.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ void Resource_GetExports(alt::IResource* resource, alt::Array<alt::String> &keys
1919
bool Resource_GetExport(alt::IResource* resource, const char* key, alt::MValue &value) {
2020
auto dict = resource->GetExports().Get<alt::MValue::Dict>();
2121
auto dictValue = dict.find(key);
22-
std::cout << "try find in size " << std::to_string(dict.size()) << std::endl;
2322
if (dictValue == dict.end()) {
24-
std::cout << "not found key" << std::endl;
2523
return false;
2624
}
2725
value = dictValue->second;

0 commit comments

Comments
 (0)