Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Forbid construction of utility class.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 4 Apr 2019 08:33:03 +0000 (10:33 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 4 Apr 2019 09:53:33 +0000 (11:53 +0200)
src/bindings/java/org/simgrid/trace/Trace.java

index 4471c98..f9f4d63 100644 (file)
@@ -16,6 +16,10 @@ public final class Trace {
     NativeLib.nativeInit();
   }
 
+  private Trace() {
+    throw new IllegalStateException("Utility class \"Trace\"");
+  }
+
   // TODO complete the binding of the tracing API
 
   /**