mirror of
https://github.com/sojamo/controlp5
synced 2024-11-16 03:07:56 +01:00
Update ControllerGroup.java
Initialize _**String**_ fields w/ an empty `""`.
This commit is contained in:
parent
0f3f38146b
commit
84b09409cf
@ -46,7 +46,7 @@ public abstract class ControllerGroup< T extends ControllerGroup< T > >
|
||||
protected final List< ControlListener > _myControlListener = new ArrayList< >( );
|
||||
protected ControlP5 cp5;
|
||||
protected ControllerGroup< ? extends ControllerGroup< ? > > _myParent;
|
||||
protected String _myName;
|
||||
protected String _myName = "";
|
||||
protected int _myId = -1;
|
||||
protected final CColor color = new CColor( );
|
||||
protected boolean isMousePressed = false;
|
||||
@ -67,7 +67,7 @@ public abstract class ControllerGroup< T extends ControllerGroup< T > >
|
||||
protected boolean isUpdate;
|
||||
protected final List< Canvas > _myCanvas = new ArrayList< >( );
|
||||
protected float _myValue;
|
||||
protected String _myStringValue;
|
||||
protected String _myStringValue = "";
|
||||
protected float[] _myArrayValue;
|
||||
protected boolean isCollapse = true;
|
||||
protected int _myPickingColor = 0x6600ffff;
|
||||
|
Loading…
Reference in New Issue
Block a user