From bf2f6016aa332595de0a6cd79c4f0182f0358208 Mon Sep 17 00:00:00 2001 From: Kevin Rodrigues Borges <115191440+K3vinb5@users.noreply.github.com> Date: Sun, 21 Dec 2025 12:57:00 +0000 Subject: [PATCH] Refactor cache key generation to use stable hash codes for java objects arguments --- lib/aniyomi_bridge.dart | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/aniyomi_bridge.dart b/lib/aniyomi_bridge.dart index 876601d..0436677 100644 --- a/lib/aniyomi_bridge.dart +++ b/lib/aniyomi_bridge.dart @@ -1,5 +1,4 @@ import 'dart:async'; -import 'dart:convert'; import 'dart:io'; import 'dart:isolate'; import 'dart:math'; @@ -448,14 +447,4 @@ class AniyomiBridge { } return value.hashCode; } - - - - // bool _isCacheable(JniIsolateMessageType messageType) { - // if (config.cacheDisabledMessageType.contains(messageType)){ - // _logger.w("Endpoint $messageType is disabled for caching"); - // return false; - // } - // return true; - // } }