diff options
| author | franck cuny <franck@lumberjaph.net> | 2011-06-13 18:56:59 +0200 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2011-06-13 18:56:59 +0200 |
| commit | aa56c7801272d606d30e42e631f3c33c85d24f7d (patch) | |
| tree | bb4ecbe1171b5560ec7c0aa54b77a5bceac1f2bb /lib/Graph/GEXF.pm | |
| parent | add more deps for graph::gexf (diff) | |
| download | stargit-aa56c7801272d606d30e42e631f3c33c85d24f7d.tar.gz | |
remove dep on libuuid
Signed-off-by: franck cuny <franck@lumberjaph.net>
Diffstat (limited to 'lib/Graph/GEXF.pm')
| -rw-r--r-- | lib/Graph/GEXF.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Graph/GEXF.pm b/lib/Graph/GEXF.pm index f226b06..941bcb9 100644 --- a/lib/Graph/GEXF.pm +++ b/lib/Graph/GEXF.pm @@ -4,7 +4,7 @@ package Graph::GEXF; use Moose; -use Data::UUID::LibUUID; +#use Data::UUID::LibUUID; use Moose::Util::TypeConstraints; use Graph::GEXF::Node; @@ -124,7 +124,7 @@ sub add_node { die "Can't add node wih id $id: already exists"; } - $id = new_uuid_string() if !defined $id; +# $id = new_uuid_string() if !defined $id; my $node = Graph::GEXF::Node->new(id => $id); |
