1/**
2 * Copyright (c) 2006-2017, JGraph Ltd
3 * Copyright (c) 2006-2017, Gaudenz Alder
4 */
5GitLabLibrary = function(ui, data, meta)
6{
7	GitLabFile.call(this, ui, data, meta);
8};
9
10//Extends mxEventSource
11mxUtils.extend(GitLabLibrary, GitLabFile);
12
13/**
14 * Overridden to avoid updating data with current file.
15 */
16GitLabLibrary.prototype.doSave = function(title, success, error)
17{
18	this.saveFile(title, false, success, error);
19};
20
21/**
22 * Returns the location as a new object.
23 * @type mx.Point
24 */
25GitLabLibrary.prototype.open = function()
26{
27	// Do nothing - this should never be called
28};
29