warnings on ofbiz compile

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

warnings on ofbiz compile

Harmeet Bedi
There are a lot of compilation warnings related to collections and generic.

e.g.

package org.ofbiz.accounting.thirdparty.authorizedotnet;

import java.util.*;

public class AuthorizeResponse {

    private String rawResp = null;
    private List response = new ArrayList();


gives warning and seems to be
List<String>

Wondering if there is a plan to clean this up or if there is interest
and you need someone to do the work... i can.

Harmeet
Reply | Threaded
Open this post in threaded view
|

Re: warnings on ofbiz compile

Adrian Crum
We fix the compilation warnings as we come across them.

There is no plan to clean them up. However, Adam Heath has been doing
some work in that area.

We could always use additional contributors! Maybe you could coordinate
your efforts with Adam.

-Adrian

Harmeet Bedi wrote:

> There are a lot of compilation warnings related to collections and generic.
>
> e.g.
>
> package org.ofbiz.accounting.thirdparty.authorizedotnet;
>
> import java.util.*;
>
> public class AuthorizeResponse {
>
>    private String rawResp = null;
>    private List response = new ArrayList();
>
>
> gives warning and seems to be
> List<String>
>
> Wondering if there is a plan to clean this up or if there is interest
> and you need someone to do the work... i can.
>
> Harmeet
>
Reply | Threaded
Open this post in threaded view
|

Re: warnings on ofbiz compile

Adam Heath-2
Adrian Crum wrote:
> We fix the compilation warnings as we come across them.
>
> There is no plan to clean them up. However, Adam Heath has been doing
> some work in that area.

I have a plan to fix them all.

> We could always use additional contributors! Maybe you could coordinate
> your efforts with Adam.

All of framework has been generified.  application and specialpurpose
are left.