Code Duplication    Length = 6-6 lines in 2 locations

includes/diff/DifferenceEngine.php 2 locations

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