All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prompto.debug.stack.WorkerStack Maven / Gradle / Ivy

The newest version!
package prompto.debug.stack;

import java.util.ArrayDeque;

public class WorkerStack extends ArrayDeque implements IStack {

	private static final long serialVersionUID = 1L;

	public WorkerStackFrame find(IStackFrame frame) {
		for(WorkerStackFrame f : this) {
			if(f.equals(frame))
				return f;
		}
		return null;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy