function _DiffEngine::MAX_XREF_LENGTH

1 call to _DiffEngine::MAX_XREF_LENGTH()
_DiffEngine::_line_hash in drupal/core/lib/Drupal/Component/Diff/DiffEngine.php
Returns the whole line if it's small enough, or the MD5 hash otherwise.

File

drupal/core/lib/Drupal/Component/Diff/DiffEngine.php, line 136
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Class

_DiffEngine
Class used internally by Diff to actually compute the diffs.

Code

function MAX_XREF_LENGTH() {
  return 10000;
}