Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/shared/rpc/BoListResponse.java

Diff revisions: vs.
  @@ -14,14 +14,13 @@
14 14 */
15 15 private ArrayList<T> mBOs;
16 16
17 - @Deprecated
18 - BoListResponse()
17 + @Deprecated BoListResponse()
19 18 {
20 19 }
21 20
22 - public BoListResponse(BoListRequest<T> pRequest, ArrayList<T> pBOs)
21 + public BoListResponse( BoListRequest<T> pRequest, ArrayList<T> pBOs )
23 22 {
24 - super(pRequest);
23 + super( pRequest );
25 24 mBOs = pBOs;
26 25 }
27 26