Skip to content

Commit 7be13aa

Browse files
committed
fix for api change
1 parent b15a1f0 commit 7be13aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java/examples/Topics/Advanced Data/LoadSaveJSON/LoadSaveJSON.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void draw() {
101101
bubbleData.append(newBubble);
102102

103103
if (bubbleData.size() > 10) {
104-
bubbleData.removeIndex(0);
104+
bubbleData.remove(0);
105105
}
106106

107107
// Save new data

0 commit comments

Comments
 (0)