From 455f0fc0acdc79a9e248d06bf8303dd1cda5abb8 Mon Sep 17 00:00:00 2001 From: Manu Phatak Date: Sat, 30 Apr 2016 18:14:52 -0500 Subject: [PATCH] remove @private from jsdoc --- server/current-context.js | 1 - 1 file changed, 1 deletion(-) diff --git a/server/current-context.js b/server/current-context.js index 887a9b5e..8ee4cb3b 100644 --- a/server/current-context.js +++ b/server/current-context.js @@ -98,7 +98,6 @@ module.exports = function(loopback) { * context, try the parent one * @param {String} name Name of the context property * @returns {*} Value of the context property - * @private */ ChainedContext.prototype.get = function(name) { var val = this.child && this.child.get(name);