Fixed: [Issue 117] Import cannot "Ctrl+Click" file with space between last quote and the semicolon
diff --git a/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/STRINGValueConverter.java b/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/STRINGValueConverter.java index 63c5f96..ae23a29 100644 --- a/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/STRINGValueConverter.java +++ b/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/STRINGValueConverter.java
@@ -41,7 +41,7 @@ public String toValue(String string, INode node) throws ValueConverterException { if (string == null) return null; try { - String clean = removeLineBreaksFrom(string); + String clean = removeLineBreaksFrom(string).trim(); return convertToJavaString(clean.substring(1, clean.length() - 1), true); } catch (IllegalArgumentException e) { throw parsingError(string, node, e);