Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 478732 - Fix the warning in the org.eclipse.orion.client repo
  • Loading branch information
xindechenxin authored and mrennie committed Apr 24, 2017
1 parent c43a952 commit cdd4b31
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,6 +1,6 @@
/*******************************************************************************
* @license
* Copyright (c) 2014 IBM Corporation and others.
* Copyright (c) 2014, 2017 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 Down Expand Up @@ -95,7 +95,7 @@ define([
var item = data.items.status || data.handler.status || data.items;
var gitStashLocation = item.Clone.StashLocation;

gitService.doStashPop(gitStashLocation).then(function(resp){
gitService.doStashPop(gitStashLocation).then(/* @callback */function(resp){
d.resolve(data);
}, function(error){
d.reject(error);
Expand Down

0 comments on commit cdd4b31

Please sign in to comment.