Lovelyxredxpanda / json-simple

Automatically exported from code.google.com/p/json-simple
Apache License 2.0
0 stars 0 forks source link

Patch for /trunk/src/main/java/org/json/simple/parser/ContainerFactory.java #95

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Added second e in create to createArrayContainer

Original issue reported on code.google.com by ntroj...@gmail.com on 2 Jul 2014 at 2:25

Attachments:

GoogleCodeExporter commented 9 years ago
It's awkward that there is a typo in the method name, but since it's already 
published, let's keep it unchanged and let all of users remember my 
carelessness. :-)

Original comment by fangyid...@gmail.com on 15 Jul 2014 at 3:12

GoogleCodeExporter commented 9 years ago
In pretty much all projects out there this is handled using deprecation and 
major versioning;

v 1.1:
public void misspellet() {

v1.2: 
@Deprecated
public void misspellet() {
  misspelled();
}
public void misspelled() {

v2.0:
public void misspelled() {

Original comment by karl.wet...@kodapan.se on 15 Jul 2014 at 12:59