Date: 2025-08-08
Network: mantra-canary-net-1
RPC: https://rpc.canary.mantrachain.dev
- Code ID: 20
- Contract Hash: f6247eb6218abb94542424c264abd0e1daa2b518f9f48a923a3d50bd3dac0009
- File Size: 320 kB
Date: 2025-08-08
Network: mantra-canary-net-1
RPC: https://rpc.canary.mantrachain.dev
| Based on the analysis in @unused_constants.md, systematically remove unused constants from the test files. Follow these guidelines: | |
| **Scope & Priority:** | |
| - Start with constants used 0 times (truly unused) | |
| - Then consider constants used only 1 time if they appear to be test-specific and not providing meaningful value | |
| - Work on one test file at a time, starting with the smallest files first | |
| **Process:** | |
| 1. **Before making changes:** Read the target test file completely to understand context | |
| 2. **Remove constants carefully:** Only remove those that are clearly unused or redundant |
I hereby claim:
To claim this, I am signing this object:
| #! /bin/sh | |
| adb shell input tap 270 668 | |
| sleep .3 | |
| adb shell input tap 280 532 | |
| sleep .2 | |
| adb shell input text "$1" | |
| sleep 1 | |
| adb shell input tap 280 50 | |
| adb shell input tap 280 50 | |
| adb shell input tap 280 50 |
| 'use strict'; | |
| /** | |
| * controller test | |
| */ | |
| angular.module('inOutDeliveryAdmin.test', ['ngRoute']) | |
| .config(['$routeProvider', function ($routeProvider) { | |
| $routeProvider.when('/test', { | |
| templateUrl: 'test/test.html', | |
| controller: 'TestCtrl' | |
| }) |
| @ParseClassName("Car") | |
| class Car : ParseObject() { | |
| var brand by ParseDelegate<String?>() | |
| var image by ParseDelegate<ParseFile?>() | |
| } |
| @ParseClassName("Car") | |
| class Car : ParseObject() { | |
| var brand: String? | |
| get() { | |
| return this.getString("car") | |
| } | |
| set(value) { | |
| this.put("car", value) | |
| } |
| package com.sambarboza | |
| import com.parse.ParseObject | |
| import kotlin.reflect.KProperty | |
| public class ParseDelegate<T> { | |
| @Suppress("UNCHECKED_CAST") | |
| operator fun getValue(parseObj: ParseObject, propertyMetadata: KProperty<*>): T { | |
| return parseObj.get(propertyMetadata.name) as T | |
| } |
| import com.google.gson.annotations.SerializedName; | |
| public class AddressComponent { | |
| @SerializedName("long_name") | |
| private String longName; | |
| @SerializedName("short_name") | |
| private String shortName; | |
| private String[] types; |
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| jcenter() | |
| } | |
| dependencies { | |
| classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4' | |
| } | |
| } |