Alexander Rose il y a 5 ans
Parent
commit
91f5207d68
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/mol-math/graph/inter-unit-graph.ts

+ 2 - 2
src/mol-math/graph/inter-unit-graph.ts

@@ -1,5 +1,3 @@
-import { UniqueArray } from '../../mol-data/generic'
-
 /**
  * Copyright (c) 2017-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  *
@@ -7,6 +5,8 @@ import { UniqueArray } from '../../mol-data/generic'
  * @author Alexander Rose <alexander.rose@weirdbyte.de>
  */
 
+import { UniqueArray } from '../../mol-data/generic'
+
 export { InterUnitGraph }
 
 class InterUnitGraph<Unit extends InterUnitGraph.UnitBase, VertexIndex extends number, EdgeProps extends InterUnitGraph.EdgePropsBase = {}> {