1
0
Fork 0

JsonResponse#request must be virtual

To suppor trait stacking.
master
Mike Gerwitz 2015-05-27 15:24:38 -04:00
parent af4a775155
commit 2b92a2c447
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/** /**
* Processes DataApi return data as JSON * Processes DataApi return data as JSON
* *
* Copyright (C) 2014 LoVullo Associates, Inc. * Copyright (C) 2014, 2015 LoVullo Associates, Inc.
* *
* This file is part of the Liza Data Collection Framework * This file is part of the Liza Data Collection Framework
* *
@ -40,7 +40,7 @@ module.exports = Trait( 'JsonResponse' )
* *
* @return {DataApi} self * @return {DataApi} self
*/ */
'abstract override public request': function( data, callback ) 'virtual abstract override public request': function( data, callback )
{ {
this.__super( data, function( err, resp ) this.__super( data, function( err, resp )
{ {

View File

@ -1,7 +1,7 @@
/** /**
* Test case for JSON formatting of API result * Test case for JSON formatting of API result
* *
* Copyright (C) 2014 LoVullo Associates, Inc. * Copyright (C) 2014, 2015 LoVullo Associates, Inc.
* *
* This file is part of the Liza Data Collection Framework * This file is part of the Liza Data Collection Framework
* *