Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 527206 - Merge LSP support into master - problems.js changes
Signed-off-by: Remy Suen <remy.suen@gmail.com>
  • Loading branch information
rcjsuen committed Jan 11, 2018
1 parent e176d23 commit 7571bc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bundles/org.eclipse.orion.client.core/web/orion/problems.js
@@ -1,6 +1,6 @@
/*******************************************************************************
* @license
* Copyright (c) 2010, 2012 IBM Corporation and others.
* Copyright (c) 2010, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution
Expand All @@ -27,9 +27,9 @@ define(["orion/EventTarget"], function(EventTarget) {

ProblemService.prototype = /** @lends orion.problems.ProblemService.prototype */ {
// provider
_setProblems: function(problems) {
_setProblems: function(problems, uri) {
this.problems = problems;
this.dispatchEvent({type:"problemsChanged", problems:problems}); //$NON-NLS-0$
this.dispatchEvent({type:"problemsChanged", uri: uri, problems:problems}); //$NON-NLS-0$
}
};
ProblemService.prototype.constructor = ProblemService;
Expand Down

0 comments on commit 7571bc0

Please sign in to comment.