/** * Copyright (c) 2009-2011, The HATS Consortium. All rights reserved. * This file is licensed under the terms of the Modified BSD License. */ package deadlock.analyser.detection; import java.util.LinkedList; public class DebugInfo { LinkedList<String> callStack = new LinkedList<>(); }