Remove final uses of @code in JS comments

This fixes the build broken by []

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=186782466
This commit is contained in:
mcilwain 2018-02-23 09:51:07 -08:00 committed by jianglai
parent cb80a0df1e
commit a898413c8c
10 changed files with 12 additions and 29 deletions

View file

@ -77,7 +77,7 @@ registry.Console.prototype.bindToDom = function() {
/** /**
* Subclasses should override to visit the hash token given by * Subclasses should override to visit the hash token given by
* {@code goog.History.getToken()}. * `goog.History.getToken()`.
*/ */
registry.Console.prototype.handleHashChange = goog.abstractMethod; registry.Console.prototype.handleHashChange = goog.abstractMethod;

View file

@ -94,8 +94,8 @@ registry.EditItem.prototype.setupAppbar = function() {
/** /**
* Retrieve item from server. Overrides should callback to {@code * Retrieve item from server. Overrides should callback to
* #handleFetchItem(string, !Object)}. * `#handleFetchItem(string, !Object)`.
* @param {string} id item id. * @param {string} id item id.
*/ */
registry.EditItem.prototype.fetchItem = goog.abstractMethod; registry.EditItem.prototype.fetchItem = goog.abstractMethod;
@ -136,8 +136,8 @@ registry.EditItem.prototype.isEditing = function() {
/** /**
* Toggles the editing state of a component. This will first hide the * Toggles the editing state of a component. This will first hide the
* elements of the `shown` class, then adds the `editing` * elements of the `shown` class, then adds the `editing`
* style to the component, then shows the elements that had the {@code * style to the component, then shows the elements that had the `hidden`
* hidden} class. * class.
*/ */
registry.EditItem.prototype.toggleEdit = function() { registry.EditItem.prototype.toggleEdit = function() {
// Toggle appbar buttons. // Toggle appbar buttons.

View file

@ -103,7 +103,7 @@ goog.inherits(registry.registrar.Console, registry.Console);
* #type/id * #type/id
* </pre> * </pre>
* *
* <p>The `id` part may be appended by {@code ()} to specify the target * <p>The `id` part may be appended by `()` to specify that the target
* should be a resource create page. * should be a resource create page.
* *
* @override * @override

View file

@ -334,7 +334,7 @@ registry.registrar.Payment.prototype.onMessage_ = function(e) {
* *
* <p>This approach is also advantageous for screenshot testing. We do not want * <p>This approach is also advantageous for screenshot testing. We do not want
* our continuous integration testing system to talk to Braintree's servers. So * our continuous integration testing system to talk to Braintree's servers. So
* we mock out the brainframe with {@code integration-test-brainframe.html} * we mock out the brainframe with `integration-test-brainframe.html`
* which <i>only</i> sends us a METHOD message, which we then render ourselves. * which <i>only</i> sends us a METHOD message, which we then render ourselves.
* *
* @param {!braintreepayments.PaymentMethod} pm * @param {!braintreepayments.PaymentMethod} pm

View file

@ -20,7 +20,7 @@ goog.require('goog.soy');
/** /**
* Logging function that delegates to {@code console.log()}. * Logging function that delegates to `console.log()`.
* @param {...*} var_args * @param {...*} var_args
*/ */
registry.util.log = function(var_args) { registry.util.log = function(var_args) {

View file

@ -51,7 +51,7 @@ registry.registrar.ConsoleTestUtil.setup = function(test) {
* @param {Object} test the test case to configure. * @param {Object} test the test case to configure.
* @param {Object=} opt_args may include path, isEppLoggedIn. * @param {Object=} opt_args may include path, isEppLoggedIn.
* @param {Function=} opt_moar extra setup after called just before * @param {Function=} opt_moar extra setup after called just before
* {@code $replayAll}. See memegen/3437690. * `$replayAll`. See memegen/3437690.
*/ */
registry.registrar.ConsoleTestUtil.visit = function( registry.registrar.ConsoleTestUtil.visit = function(
test, opt_args, opt_moar) { test, opt_args, opt_moar) {

View file

@ -41,7 +41,7 @@ registry.testing.addToDocument = function(html) {
/** /**
* Extracts XML document from inside an {@code <iframe>}. * Extracts XML document from inside an `<iframe>`.
* @param {string} xmlText * @param {string} xmlText
* @return {!Document} * @return {!Document}
*/ */
@ -56,7 +56,7 @@ registry.testing.loadXml = function(xmlText) {
/** /**
* Extracts plain text string from inside an {@code <iframe>}. * Extracts plain text string from inside an `<iframe>`.
* @param {string|!Document|!Element} want * @param {string|!Document|!Element} want
* @param {string|!Document|!Element} got * @param {string|!Document|!Element} got
*/ */

View file

@ -4,21 +4,4 @@ JSCH is a library for making SSH and SFTP connections from Java. It is
released under a BSD-style license. See its [project released under a BSD-style license. See its [project
page](http://www.jcraft.com/jsch) for further details. page](http://www.jcraft.com/jsch) for further details.
## Local Modifications for Google No local modifications.
Define global ThreadFactory instance. This allows the library to be used on
App Engine, which doesn't allow apps to call `new Thread()`. To do this, you
must override `JSch.threadFactory` with something from GAE's ThreadManager.
Another global is also provided to disable calls to `Thread#setName` which
always crash on GAE, regardless of ThreadFactory.
### Files edited:
* JSch.java - Defined new `threadFactory` and `useThreadNames` fields.
* Util.java - Updated thread creation code.
* ChannelDirectTCPIP.java - Updated thread creation code.
* ChannelSubsystem.java - Updated thread creation code.
* ChannelShell.java - Updated thread creation code.
* Session.java - Updated thread creation code.
* ChannelForwardedTCPIP.java - Updated thread creation code.
* ChannelExec.java - Updated thread creation code.

Binary file not shown.

Binary file not shown.