1 package org.jf.dexlib2.builder; 2 3 public class LocatedDebugItems extends LocatedItems<BuilderDebugItem> { 4 5 @Override getAddLocatedItemError()6 protected String getAddLocatedItemError() { 7 return "Cannot add a debug item that has already been added to a method." + 8 "You must remove it from its current location first."; 9 } 10 } 11