Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit c3b52fc

Browse files
committed
fix: remove endpointParentSeparator() will de deprecated
1 parent 3bf91ab commit c3b52fc

2 files changed

Lines changed: 4 additions & 19 deletions

File tree

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ basic step implementation
2828

2929
- [Step](#step)
3030
- [startupOrder](#startuporder)
31-
- [endpointParentSeparator](#endpointparentseparator)
3231
- [log](#log)
3332
- [name](#name)
3433
- [startupOrder](#startuporder-1)
@@ -48,22 +47,16 @@ Higher numbers result in earlier startup
4847

4948
Returns **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** delivered from the constructors startupOrder
5049

51-
### endpointParentSeparator
52-
53-
separator between step name and endpoint name
54-
55-
Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** '/'
56-
5750
### log
5851

59-
adds 'step-type' and 'step-name' to the log event
52+
Adds 'step-type' and 'step-name' to the log event
6053

6154
**Parameters**
6255

6356
- `level`
6457
- `arg`
6558

66-
Returns **[undefined](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/undefined)**
59+
Returns **void**
6760

6861
### name
6962

src/step.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,8 @@ export class Step extends Service {
3434
}
3535

3636
/**
37-
* separator between step name and endpoint name
38-
* @return {string} '/'
39-
**/
40-
get endpointParentSeparator() {
41-
return '/';
42-
}
43-
44-
/**
45-
* adds 'step-type' and 'step-name' to the log event
46-
* @return {undefined}
37+
* Adds 'step-type' and 'step-name' to the log event
38+
* @return {void}
4739
**/
4840
log(level, arg) {
4941
this.endpoints.log.receive(

0 commit comments

Comments
 (0)