Here you can find the source of dequote(String text)
private static String dequote(String text)
//package com.java2s; //License from project: Open Source License public class Main { private static String dequote(String text) { return text.substring(0, text.length()); }/*from w w w . ja v a 2 s .c o m*/ }