• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.jf.dexlib2.builder;
2 
3 public class LocatedLabels extends LocatedItems<Label> {
4     @Override
getAddLocatedItemError()5     protected String getAddLocatedItemError() {
6         return "Cannot add a label that is already placed." +
7                 "You must remove it from its current location first.";
8     }
9 }
10