From 913e4e4248cccc0b04ac8d85ff1524f9f5ec20ca Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 2 Oct 2014 08:47:23 -0700 Subject: [PATCH] Add missing Grim prefix to deprecate calls Closes #3706 --- src/marker.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/marker.coffee b/src/marker.coffee index e373c2f60..f2589e469 100644 --- a/src/marker.coffee +++ b/src/marker.coffee @@ -160,7 +160,7 @@ class Marker getProperties: -> @bufferMarker.getProperties() getAttributes: -> - deprecate 'Use Marker::getProperties instead' + Grim.deprecate 'Use Marker::getProperties instead' @getProperties() # Essential: Merges an {Object} containing new properties into the marker's @@ -170,14 +170,14 @@ class Marker setProperties: (properties) -> @bufferMarker.setProperties(properties) setAttributes: (properties) -> - deprecate 'Use Marker::getProperties instead' + Grim.deprecate 'Use Marker::getProperties instead' @setProperties(properties) matchesProperties: (attributes) -> attributes = @displayBuffer.translateToBufferMarkerParams(attributes) @bufferMarker.matchesParams(attributes) matchesAttributes: (attributes) -> - deprecate 'Use Marker::matchesProperties instead' + Grim.deprecate 'Use Marker::matchesProperties instead' @matchesProperties(attributes) ###