Skip to content

Commit b2f66c1

Browse files
committed
Minor fix for JsonLintJsonLinter class.
Summary: Remove a `\` character, which will probably cause issues on PHP versions earlier than 5.3. Test Plan: Thought long and hard. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9636
1 parent 384bdaa commit b2f66c1

File tree

1 file changed

+1
-1
lines changed
  • externals/jsonlint/src/Seld/JsonLint

1 file changed

+1
-1
lines changed

externals/jsonlint/src/Seld/JsonLint/Lexer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function getUpcomingInput()
107107

108108
protected function parseError($str, $hash)
109109
{
110-
throw new \Exception($str);
110+
throw new Exception($str);
111111
}
112112

113113
private function next()

0 commit comments

Comments
 (0)