Code Duplication    Length = 6-6 lines in 2 locations

includes/diff/DifferenceEngine.php 2 locations

@@ 1380-1385 (lines=6) @@
1377
			return false;
1378
		}
1379
1380
		if ( $this->mOldRev ) {
1381
			$this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1382
			if ( $this->mOldContent === null ) {
1383
				return false;
1384
			}
1385
		}
1386
1387
		if ( $this->mNewRev ) {
1388
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
@@ 1387-1392 (lines=6) @@
1384
			}
1385
		}
1386
1387
		if ( $this->mNewRev ) {
1388
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1389
			if ( $this->mNewContent === null ) {
1390
				return false;
1391
			}
1392
		}
1393
1394
		return true;
1395
	}