Hallo
i have a bug, when i use the beautifier for one function in a package. It always delete a CR/LF at the end of the marked funktion.
You can try it with the funtion test.
sample:
create or replace package test is
-- Author : UPE
-- Created : 09.08.2007 16:16:04
-- Purpose :
-- Public function and procedure declarations
function test return varchar2;
end test;
/
create or replace package body test is
-- Function and procedure implementations
function test return varchar2 is
begin
null;
return(1);
end;
begin
-- Initialization
null;
end test;
/
i have a bug, when i use the beautifier for one function in a package. It always delete a CR/LF at the end of the marked funktion.
You can try it with the funtion test.
sample:
create or replace package test is
-- Author : UPE
-- Created : 09.08.2007 16:16:04
-- Purpose :
-- Public function and procedure declarations
function test return varchar2;
end test;
/
create or replace package body test is
-- Function and procedure implementations
function test return varchar2 is
begin
null;
return(1);
end;
begin
-- Initialization
null;
end test;
/