Changeset 1239 for trunk/autoquest-plugin-html/src/main/java
- Timestamp:
- 06/27/13 17:42:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/eventcore/HTMLEventTypeFactory.java
r1223 r1239 141 141 String xCoord = eventParameters.get(xParamName); 142 142 if (xCoord == null) { 143 throw new IllegalArgumentException144 ("eventParameters do not contain " + xParamName + " coordinate.");143 Console.printerrln("eventParameters do not contain " + xParamName + " coordinate."); 144 xCoord = "0"; 145 145 } 146 146 147 147 String yCoord = eventParameters.get(yParamName); 148 148 if (yCoord == null) { 149 throw new IllegalArgumentException150 ("eventParameters do not contain " + yParamName + " coordinate.");149 Console.printerrln("eventParameters do not contain " + yParamName + " coordinate."); 150 yCoord = "0"; 151 151 } 152 152
Note: See TracChangeset
for help on using the changeset viewer.