导航菜单

页面标题

页面副标题

Zepto v25.1.4 - Attribution.java 源代码

正在查看: Zepto v25.1.4 应用的 Attribution.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.mappls.sdk.maps.attribution;

import java.util.ArrayList;

public class Attribution {
    public String a;
    public String b;

    static {
        ArrayList arrayList = new ArrayList();
        arrayList.add("https://www.mappls.com/feedback/");
        arrayList.add("https://www.mappls.com/map-feedback/");
        arrayList.add("https://apps.mappls.com/feedback/");
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        Attribution attribution = (Attribution) obj;
        String str = attribution.a;
        String str2 = this.a;
        if (str2 == null ? str != null : !str2.equals(str)) {
            return false;
        }
        String str3 = attribution.b;
        String str4 = this.b;
        return str4 != null ? str4.equals(str3) : str3 == null;
    }

    public final int hashCode() {
        String str = this.a;
        int hashCode = (str != null ? str.hashCode() : 0) * 31;
        String str2 = this.b;
        return hashCode + (str2 != null ? str2.hashCode() : 0);
    }
}