google-code-export / activeweb

Automatically exported from code.google.com/p/activeweb
0 stars 0 forks source link

activeweb/Router.java missing single quote on line 186. #25

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Error message thrown from Router.java:186 is missing a single quote.

184            if (action != null && !(action.equals("new_form") || 
action.equals("edit_form"))) {
185                throw new IllegalArgumentException("Illegal action name: '" 
+ action +
186                        ", allowed names for restful controllers: 'new_form' 
and 'edit_form'");
187            }

The single quote should be between the double-quote and the comma at the 
beginning of the line.

"',

Low priority. I realize this is a nit-pick. 

Thanks for the great framework!

Phil 

Original issue reported on code.google.com by mikanboy@gmail.com on 8 May 2011 at 12:54

GoogleCodeExporter commented 9 years ago
fixed

Original comment by ipolevoy@gmail.com on 8 May 2011 at 7:20