Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ThoughtManager.java 534 B
package sample;

import java.util.*;

public class ThoughtManager {
    private List<Thought> thoughts = new ArrayList<>();
    public void makeList()
    {
        Thought t = new Thought("yeet1");
        Thought t2 = new Thought("yeet12");
        Thought t3 = new Thought("yeet3");
        Thought t4 = new Thought("yeet4");
        Thought t5 = new Thought("yeet5");
        this.thoughts.add(t);
        this.thoughts.add(t2);
        this.thoughts.add(t3);
        this.thoughts.add(t4);
        this.thoughts.add(t5);
    }
}