Auto stash before merge of "master" and "origin/master"

This commit is contained in:
Alex Stewart
2020-02-25 18:25:17 -05:00
parent d5346b3727
commit 6be6bd4033
17 changed files with 1356 additions and 1271 deletions
+14 -14
View File
@@ -1,15 +1,15 @@
package dataStructures;
public class KittyChannel
{
public String uniqueID;
public boolean mature;
public KittyChannel(String uniqueID, boolean mature)
{
//super(uniqueID);
this.uniqueID = uniqueID;
this.mature = false;
}
package dataStructures;
public class KittyChannel
{
public String uniqueID;
public boolean mature;
public KittyChannel(String uniqueID, boolean mature)
{
//super(uniqueID);
this.uniqueID = uniqueID;
this.mature = false;
}
}