Code Duplication    Length = 6-6 lines in 2 locations

includes/diff/DifferenceEngine.php 2 locations

@@ 1355-1360 (lines=6) @@
1352
			return false;
1353
		}
1354
1355
		if ( $this->mOldRev ) {
1356
			$this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1357
			if ( $this->mOldContent === null ) {
1358
				return false;
1359
			}
1360
		}
1361
1362
		if ( $this->mNewRev ) {
1363
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
@@ 1362-1367 (lines=6) @@
1359
			}
1360
		}
1361
1362
		if ( $this->mNewRev ) {
1363
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1364
			if ( $this->mNewContent === null ) {
1365
				return false;
1366
			}
1367
		}
1368
1369
		return true;
1370
	}