Revert "Add getEditUrlForDiff fn to gr-navigation"
This reverts commit 0f37ca3b16d21227ce6a3134d362013e5beb5596.
Reason for revert: Edit must be a new field in the View enum.
Change-Id: Idf2b222ca6e541258c0a453199820d7a72312a53
diff --git a/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html b/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
index 0ba84f4..e81d05f 100644
--- a/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
+++ b/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
@@ -47,8 +47,6 @@
// - `leftSide`, optional, Boolean, if a `lineNum` is provided, a value
// of true selects the line from base of the patch range. False by
// default.
- // - `edit`, optional, Boolean, whether or not the editor view of the
- // diff should be loaded.
window.Gerrit = window.Gerrit || {};
@@ -228,21 +226,6 @@
},
/**
- * Gets the link to load a file in an editor.
- *
- * @param {{ _number: number, project: string }} change The change object.
- * @param {string} path The file path.
- * @param {number=} opt_patchNum
- * @param {number|string=} opt_basePatchNum The string 'PARENT' can be
- * used for none.
- * @return {string}
- */
- getEditUrlForDiff(change, path, opt_patchNum, opt_basePatchNum) {
- return this.getUrlForDiffById(change._number, change.project, path,
- opt_patchNum, opt_basePatchNum, null, null, true);
- },
-
- /**
* @param {number} changeNum
* @param {string} project The name of the project.
* @param {string} path The file path.
@@ -251,11 +234,10 @@
* used for none.
* @param {number=} opt_lineNum
* @param {boolean=} opt_leftSide
- * @param {boolean=} opt_edit
* @return {string}
*/
getUrlForDiffById(changeNum, project, path, opt_patchNum,
- opt_basePatchNum, opt_lineNum, opt_leftSide, opt_edit) {
+ opt_basePatchNum, opt_lineNum, opt_leftSide) {
if (opt_basePatchNum === PARENT_PATCHNUM) {
opt_basePatchNum = undefined;
}
@@ -270,7 +252,6 @@
basePatchNum: opt_basePatchNum,
lineNum: opt_lineNum,
leftSide: opt_leftSide,
- edit: opt_edit,
});
},