Created
December 6, 2017 18:28
-
-
Save mapyo/defc2e426b6baadf01e144514e27c75b to your computer and use it in GitHub Desktop.
class Dogをデコンパイルしたもの
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov. | |
// Jad home page: http://www.kpdus.com/jad.html | |
// Decompiler options: packimports(3) ansi | |
package com.mapyo.kotlindataclassproguardsample; | |
import a.a.a.a; | |
public final class b | |
{ | |
public b(String s, int i, String s1) | |
{ | |
a.a.a.a.a(s, "name"); | |
a.a.a.a.a(s1, "memo"); | |
super(); | |
a = s; | |
b = i; | |
c = s1; | |
} | |
public final String a() | |
{ | |
return a; | |
} | |
private final String a; | |
private final int b; | |
private final String c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment