Skip to content

Commit

Permalink
fix: debug leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
denixport committed Mar 23, 2021
1 parent 9c00e01 commit c1f3665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/generators.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ library uuid_type.generators;
import 'dart:convert' show utf8;
import 'dart:math' show Random;
import 'dart:typed_data' show Uint8List, UnmodifiableUint8ListView;

import 'package:crypto/crypto.dart' show sha1;

import 'uuid.dart';

/// Generator of time-based v1 UUIDs
Expand Down Expand Up @@ -127,8 +129,6 @@ class TimeUuidGenerator {
/// Returns Node ID for this generator
UnmodifiableUint8ListView get nodeId => UnmodifiableUint8ListView(_nodeId);

static int get zero => _zeroMs;

/// Generates UUID for current time
Uuid generate() {
final elapsedIntervals = _sw.elapsedTicks ~/ _ticksPerInterval;
Expand Down

0 comments on commit c1f3665

Please sign in to comment.