Index: third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js |
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js |
index 990af98bf7b352a7251d00f451b49591288397cb..df5f982677bed6e213d4a933b43ef5d40ae23d7e 100644 |
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js |
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js |
@@ -91,14 +91,6 @@ goog.debug.LogRecord.prototype.exception_ = null; |
/** |
- * Exception text associated with the record |
- * @type {?string} |
- * @private |
- */ |
-goog.debug.LogRecord.prototype.exceptionText_ = null; |
- |
- |
-/** |
* @define {boolean} Whether to enable log sequence numbers. |
*/ |
goog.define('goog.debug.LogRecord.ENABLE_SEQUENCE_NUMBERS', true); |
@@ -135,7 +127,6 @@ goog.debug.LogRecord.prototype.reset = function(level, msg, loggerName, |
this.msg_ = msg; |
this.loggerName_ = loggerName; |
delete this.exception_; |
- delete this.exceptionText_; |
}; |
@@ -170,26 +161,6 @@ goog.debug.LogRecord.prototype.setException = function(exception) { |
/** |
- * Get the exception text that is part of the log record. |
- * |
- * @return {?string} Exception text. |
- */ |
-goog.debug.LogRecord.prototype.getExceptionText = function() { |
- return this.exceptionText_; |
-}; |
- |
- |
-/** |
- * Set the exception text that is part of the log record. |
- * |
- * @param {string} text The exception text. |
- */ |
-goog.debug.LogRecord.prototype.setExceptionText = function(text) { |
- this.exceptionText_ = text; |
-}; |
- |
- |
-/** |
* Get the source Logger's name. |
* |
* @param {string} loggerName source logger name (may be null). |