Created
February 13, 2019 14:19
-
-
Save need4spd/44aa8219844dfcdc25ebac27e8213d76 to your computer and use it in GitHub Desktop.
MyPoolableObject
This file contains hidden or 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
public class MyPoolableObject { | |
private static int id = 0; | |
public MyPoolableObject() { id++; } | |
public int getId() { return id; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment