Code Duplication    Length = 6-6 lines in 2 locations

includes/diff/DifferenceEngine.php 2 locations

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