public final class CloudSimTags {
...
private CloudSimTags() {
throw new UnsupportedOperationException("CloudSim Tags cannot be instantiated");
}
}
should be
public abstract class CloudSimTags {
// No constructor
}
It is a constant storage class, there is no point making it final.
Original issue reported on code.google.com by daniella...@gmail.com on 17 Nov 2011 at 2:50
Original issue reported on code.google.com by
daniella...@gmail.com
on 17 Nov 2011 at 2:50