Changeset 1016:df186dd814ab

Show
Ignore:
Timestamp:
03/21/10 22:53:46 (3 years ago)
Author:
tgambet
Branch:
default
convert_revision:
svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@1017
Message:

updated check() function with new signature of InputParameter?.check(ArrayList?<Message>)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/org/w3c/unicorn/UnicornCall.java

    r918 r1016  
    1 // $Id: UnicornCall.java,v 1.38 2009-10-23 16:27:40 tgambet Exp $ 
     1// $Id: UnicornCall.java,v 1.39 2010-03-21 22:53:46 tgambet Exp $ 
    22// Author: Jean-Guilhem Rouel 
    33// (c) COPYRIGHT MIT, ERCIM and Keio, 2006. 
     
    8484         
    8585        public void check() throws UnicornException { 
    86                 inputParameter.check(); 
     86                inputParameter.check(messages); 
    8787        } 
    8888