Remove unnecessary super call
diff --git a/lib/src/graph.dart b/lib/src/graph.dart
index 12bbd8a..2e33f4e 100644
--- a/lib/src/graph.dart
+++ b/lib/src/graph.dart
@@ -192,7 +192,7 @@
   /// in the same component or earlier components).
   List<List<N>> _allComponents = new List<List<N>>();
 
-  _SccFinder(this._graph) : super();
+  _SccFinder(this._graph);
 
   /// Return a list containing the nodes that are part of the strongly connected
   /// component that contains the given node.