Autofix line ending issues
These files didn't have the expected line ending according to the .gitattributes rule: `* text=auto`. Don't know why this could have happened, but all these files where created before the mentioned rule
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -1 +1 @@
|
||||
net.sourceforge.pmd.cpd.MatlabLanguage
|
||||
net.sourceforge.pmd.cpd.MatlabLanguage
|
||||
|
@ -1 +1 @@
|
||||
net.sourceforge.pmd.lang.matlab.MatlabLanguageModule
|
||||
net.sourceforge.pmd.lang.matlab.MatlabLanguageModule
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,17 +1,17 @@
|
||||
create or replace package inline_praqma_error is
|
||||
|
||||
end;
|
||||
/
|
||||
|
||||
create or replace package body inline_praqma_error is
|
||||
procedure do_transaction(p_input_token in varchar(200)) is
|
||||
|
||||
begin
|
||||
PRAGMA AUTONOMOUS_TRANSACTION;
|
||||
bno74.log_hentglass_request(p_hentglass_request
|
||||
,v_logging_req_seq_no);
|
||||
COMMIT;
|
||||
end do_transaction;
|
||||
|
||||
end inline_praqma_error;
|
||||
/
|
||||
create or replace package inline_praqma_error is
|
||||
|
||||
end;
|
||||
/
|
||||
|
||||
create or replace package body inline_praqma_error is
|
||||
procedure do_transaction(p_input_token in varchar(200)) is
|
||||
|
||||
begin
|
||||
PRAGMA AUTONOMOUS_TRANSACTION;
|
||||
bno74.log_hentglass_request(p_hentglass_request
|
||||
,v_logging_req_seq_no);
|
||||
COMMIT;
|
||||
end do_transaction;
|
||||
|
||||
end inline_praqma_error;
|
||||
/
|
||||
|
@ -1,23 +1,23 @@
|
||||
PROCEDURE IsOfType (
|
||||
inChannelID IN number,
|
||||
inOperID IN number,
|
||||
inClientId IN number,
|
||||
ioFPOobj IN FPO_OBJ,
|
||||
inPackageIDout IN number,
|
||||
inStatusId IN number)
|
||||
is
|
||||
loFPOGE_OBJ FPOGE_OBJ;
|
||||
BEGIN
|
||||
|
||||
IF ioFPOobj IS OF (FPOGE_OBJ) THEN
|
||||
loFPOGE_OBJ:=treat(ioFPOobj AS FPOGE_OBJ);
|
||||
end if;
|
||||
|
||||
IF ioFPOobj IS NOT OF TYPE (ONLY FPOGE_OBJ) THEN
|
||||
loFPOGE_OBJ:=treat(ioFPOobj AS FPOGE_OBJ);
|
||||
end if;
|
||||
|
||||
loFPOGE_OBJ:=SELECT A FROM persons p WHERE IS OF TYPE (employee_t);
|
||||
loFPOGE_OBJ:=SELECT A FROM persons p WHERE IS NOT OF TYPE (ONLY employee_t, other_t);
|
||||
|
||||
PROCEDURE IsOfType (
|
||||
inChannelID IN number,
|
||||
inOperID IN number,
|
||||
inClientId IN number,
|
||||
ioFPOobj IN FPO_OBJ,
|
||||
inPackageIDout IN number,
|
||||
inStatusId IN number)
|
||||
is
|
||||
loFPOGE_OBJ FPOGE_OBJ;
|
||||
BEGIN
|
||||
|
||||
IF ioFPOobj IS OF (FPOGE_OBJ) THEN
|
||||
loFPOGE_OBJ:=treat(ioFPOobj AS FPOGE_OBJ);
|
||||
end if;
|
||||
|
||||
IF ioFPOobj IS NOT OF TYPE (ONLY FPOGE_OBJ) THEN
|
||||
loFPOGE_OBJ:=treat(ioFPOobj AS FPOGE_OBJ);
|
||||
end if;
|
||||
|
||||
loFPOGE_OBJ:=SELECT A FROM persons p WHERE IS OF TYPE (employee_t);
|
||||
loFPOGE_OBJ:=SELECT A FROM persons p WHERE IS NOT OF TYPE (ONLY employee_t, other_t);
|
||||
|
||||
end;
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
#
|
||||
# BSD-style license; for more info see http://pmd.sourceforge.net/license.html
|
||||
#
|
||||
|
||||
rulesets.filenames=rulesets/pom/basic.xml
|
||||
#
|
||||
# BSD-style license; for more info see http://pmd.sourceforge.net/license.html
|
||||
#
|
||||
|
||||
rulesets.filenames=rulesets/pom/basic.xml
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# BSD-style license; for more info see http://pmd.sourceforge.net/license.html
|
||||
#
|
||||
|
||||
rulesets.filenames=rulesets/xml/basic.xml
|
||||
#
|
||||
# BSD-style license; for more info see http://pmd.sourceforge.net/license.html
|
||||
#
|
||||
|
||||
rulesets.filenames=rulesets/xml/basic.xml
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# BSD-style license; for more info see http://pmd.sourceforge.net/license.html
|
||||
#
|
||||
|
||||
rulesets.filenames=rulesets/xsl/xpath.xml
|
||||
#
|
||||
# BSD-style license; for more info see http://pmd.sourceforge.net/license.html
|
||||
#
|
||||
|
||||
rulesets.filenames=rulesets/xsl/xpath.xml
|
||||
|
Reference in New Issue
Block a user