Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d792fec

Browse files
committed
Revert "Added new member-function has_output to easily check"
This reverts commit b4ece73
1 parent 94b7ea1 commit d792fec

4 files changed

Lines changed: 0 additions & 12 deletions

File tree

source/core/types/ut_output_reporter_base.tpb

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ create or replace type body ut_output_reporter_base is
2828
self.set_reporter_id(self.output_buffer.output_id);
2929
end;
3030

31-
overriding member function has_output return int is
32-
begin
33-
return 1;
34-
end;
35-
3631
overriding member procedure set_reporter_id(self in out nocopy ut_output_reporter_base, a_reporter_id raw) is
3732
begin
3833
self.id := a_reporter_id;

source/core/types/ut_output_reporter_base.tps

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ create or replace type ut_output_reporter_base under ut_reporter_base(
1818
output_buffer ut_output_buffer_base,
1919
constructor function ut_output_reporter_base(self in out nocopy ut_output_reporter_base) return self as result,
2020
member procedure init(self in out nocopy ut_output_reporter_base, a_self_type varchar2, a_output_buffer ut_output_buffer_base := null),
21-
overriding member function has_output return int,
2221
overriding member procedure set_reporter_id(self in out nocopy ut_output_reporter_base, a_reporter_id raw),
2322
overriding member procedure before_calling_run(self in out nocopy ut_output_reporter_base, a_run in ut_run),
2423

source/core/types/ut_reporter_base.tpb

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ create or replace type body ut_reporter_base is
3333
return self.id;
3434
end;
3535

36-
member function has_output return int is
37-
begin
38-
return 0;
39-
end;
40-
4136
-- run hooks
4237
member procedure before_calling_run(self in out nocopy ut_reporter_base, a_run in ut_run) is
4338
begin

source/core/types/ut_reporter_base.tps

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ create or replace type ut_reporter_base authid current_user as object(
2020
final member procedure init(self in out nocopy ut_reporter_base, a_self_type varchar2),
2121
member procedure set_reporter_id(self in out nocopy ut_reporter_base, a_reporter_id raw),
2222
member function get_reporter_id return raw,
23-
member function has_output return int,
2423

2524
-- run hooks
2625
member procedure before_calling_run(self in out nocopy ut_reporter_base, a_run in ut_run),

0 commit comments

Comments
 (0)