1 // B2QUnsafeIgnorer.java, created Mon Dec 23 23:00:34 2002 by mcmartin
2 // Copyright (C) 2001-3 mcmartin
3 // Licensed under the terms of the GNU LGPL; see COPYING for details.
4 package joeq.Compiler.Quad;
5
6 import joeq.Class.jq_Method;
7
8 /*
9 * @author Michael Martin <mcmartin@stanford.edu>
10 * @version $Id: B2QUnsafeIgnorer.java 1456 2004-03-09 22:01:46Z jwhaley $
11 */
12 class B2QUnsafeIgnorer implements BytecodeToQuad.UnsafeHelper {
13 public boolean isUnsafe(jq_Method m) {
14 return false;
15 }
16 public boolean endsBB(jq_Method m) {
17 return false;
18 }
19 public boolean handleMethod(BytecodeToQuad b2q, ControlFlowGraph quad_cfg, BytecodeToQuad.AbstractState current_state, jq_Method m, Operator.Invoke oper) {
20 return false;
21 }
22 }