We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72ba97e commit 1db2f1dCopy full SHA for 1db2f1d
src/org/yccheok/jstock/engine/YahooStockFormat.java
@@ -209,7 +209,7 @@ public List<Stock> parse(String source) {
209
if (length < 2) break; name = quotePattern.matcher(fields[1]).replaceAll("").trim();
210
211
// We use name as symbol, to make it more readable.
212
- symbol = Symbol.newInstance(name.toString());
+ symbol = Symbol.newInstance(name);
213
214
if (length < 3) break;
215
0 commit comments