Code Duplication    Length = 6-6 lines in 2 locations

includes/diff/DifferenceEngine.php 2 locations

@@ 1347-1352 (lines=6) @@
1344
			return false;
1345
		}
1346
1347
		if ( $this->mOldRev ) {
1348
			$this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1349
			if ( $this->mOldContent === null ) {
1350
				return false;
1351
			}
1352
		}
1353
1354
		if ( $this->mNewRev ) {
1355
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
@@ 1354-1359 (lines=6) @@
1351
			}
1352
		}
1353
1354
		if ( $this->mNewRev ) {
1355
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1356
			if ( $this->mNewContent === null ) {
1357
				return false;
1358
			}
1359
		}
1360
1361
		return true;
1362
	}