mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
switch to getSubset(), mult() instead of mul(), add upper/lower
This commit is contained in:
@@ -271,7 +271,7 @@ public class IntDict {
|
||||
}
|
||||
|
||||
|
||||
public void mul(String key, int amount) {
|
||||
public void mult(String key, int amount) {
|
||||
int index = index(key);
|
||||
if (index != -1) {
|
||||
values[index] *= amount;
|
||||
|
||||
Reference in New Issue
Block a user