Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static String fixPropValue(String value) {
if (value.startsWith("\""))
value = value.substring(1);
if (value.endsWith("\""))
value = value.substring(0, value.length() - 1);
return value;
}
}