Code Duplication    Length = 6-6 lines in 2 locations

includes/diff/DifferenceEngine.php 2 locations

@@ 1337-1342 (lines=6) @@
1334
			return false;
1335
		}
1336
1337
		if ( $this->mOldRev ) {
1338
			$this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1339
			if ( $this->mOldContent === null ) {
1340
				return false;
1341
			}
1342
		}
1343
1344
		if ( $this->mNewRev ) {
1345
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
@@ 1344-1349 (lines=6) @@
1341
			}
1342
		}
1343
1344
		if ( $this->mNewRev ) {
1345
			$this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1346
			if ( $this->mNewContent === null ) {
1347
				return false;
1348
			}
1349
		}
1350
1351
		return true;
1352
	}