diff options
author | Yorhel <git@yorhel.nl> | 2010-11-11 08:19:30 +0100 |
---|---|---|
committer | Yorhel <git@yorhel.nl> | 2010-11-11 08:19:30 +0100 |
commit | e66795761de0ad7b1544b8737926982e7e55898c (patch) | |
tree | 9fe77361bbad18c5bbe0ef67a0fa2f0f1bc5c40d /lib | |
parent | 2422a658efc1947f77620d3f5f3a3dbca8e842b3 (diff) |
Replaced Algorithm::Diff::XS with Algorithm::Diff::Fast
This module is cleaner, faster and has less dependencies.
(didn't exist yet at the time I first implemented the revision diffs)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VNDB/Util/CommonHTML.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/Util/CommonHTML.pm b/lib/VNDB/Util/CommonHTML.pm index be56e4a8..23b5b391 100644 --- a/lib/VNDB/Util/CommonHTML.pm +++ b/lib/VNDB/Util/CommonHTML.pm @@ -5,7 +5,7 @@ use strict; use warnings; use YAWF ':html', 'xml_escape'; use Exporter 'import'; -use Algorithm::Diff::XS 'compact_diff'; +use Algorithm::Diff::Fast 'compact_diff'; use VNDB::Func; use Encode 'encode_utf8', 'decode_utf8'; use POSIX 'ceil'; |