Changeset 4417


Ignore:
Timestamp:
Feb 20, 2013, 4:58:40 PM (10 years ago)
Author:
olle
Message:

Refs #327. Refs #797. Compiler warning for unchecked calls in class/file action/job/ListJobsAjax.java in client/servlet/ suppressed with Java annotation @SuppressWarnings("unchecked").

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/servlet/src/org/proteios/action/job/ListJobsAjax.java

    r4410 r4417  
    9595    private final SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    9696
     97  @SuppressWarnings("unchecked")
    9798  protected void doGet(HttpServletRequest req, HttpServletResponse resp)
    9899          throws ServletException, IOException
     
    338339     @return JSONArray The JSONArray updated with a JSONObject with input key and value.
    339340   */
     341  @SuppressWarnings("unchecked")
    340342  private JSONArray updateJsonArray(JSONArray jsonArray, String key, String value)
    341343  {
Note: See TracChangeset for help on using the changeset viewer.