cidToKey static method

String cidToKey(
  1. String cid
)

Implementation

static String cidToKey(String cid) {
  int pos = cid.indexOf("=");
  if(pos >= 0 && pos < cid.length - 1) return cid.substring(pos + 1);
  return cid;
}