Last active
December 6, 2017 18:59
-
-
Save mapyo/f9cc80e48395fb3952673cdfeb613c10 to your computer and use it in GitHub Desktop.
class Penguin(java)をデコンパイルしたもの
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; | |
public class c | |
{ | |
public c(String s, int i, String s1) | |
{ | |
a = s; | |
b = i; | |
c = s1; | |
} | |
public 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