seyed8453 / cloudsim

Automatically exported from code.google.com/p/cloudsim
0 stars 0 forks source link

CloudSimTags class should be abstract, not final #19

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
"Final" modifier removed from class CloudSimTags.

Original comment by rodrigo.calheiros on 15 Dec 2011 at 3:50