Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
grendello committed Nov 29, 2024
1 parent a176d9d commit db9f5f3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion src/native/monodroid/embedded-assemblies-zip.cc
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ EmbeddedAssemblies::zip_load_assembly_store_entries (std::vector<uint8_t> const&
continue;
}

if (!assembly_store_found && Util::ends_with (entry_name, assembly_store_file_path.data ())) {
if (!assembly_store_found && Util::ends_with (entry_name, assembly_store_file_path)) {
assembly_store_found = true;
map_assembly_store (entry_name, state);
continue;
Expand Down
5 changes: 0 additions & 5 deletions src/native/runtime-base/util.hh
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,6 @@ namespace xamarin::android
return false;
}

// log_debug (LOG_ASSEMBLY, " ends_with: '%s' -> '%s'; sv.length () == %zu",
// str.get () + str.length () - sv.length (),
// sv.data (),
// sv.length ()
// );
return memcmp (str.get () + str.length () - sv.length (), sv.data (), sv.length ()) == 0;
}

Expand Down

0 comments on commit db9f5f3

Please sign in to comment.