Skip to content

Commit 8447044

Browse files
author
Pouya Samadi Khah
committed
Reformat and update override annotations
1 parent 5c0b149 commit 8447044

File tree

4 files changed

+252
-219
lines changed

4 files changed

+252
-219
lines changed

src/AuditTrailModule/javasource/audittrail/actions/CreateLogRecordChangesBeforeDelete.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public CreateLogRecordChangesBeforeDelete(IContext context, IMendixObject Audita
3232
this.AuditableObject = AuditableObject;
3333
}
3434

35-
@Override
35+
@java.lang.Override
3636
public IMendixObject executeAction() throws Exception
3737
{
3838
// BEGIN USER CODE
@@ -46,7 +46,7 @@ public IMendixObject executeAction() throws Exception
4646
/**
4747
* Returns a string representation of this action
4848
*/
49-
@Override
49+
@java.lang.Override
5050
public java.lang.String toString()
5151
{
5252
return "CreateLogRecordChangesBeforeDelete";

src/AuditTrailModule/javasource/audittrail/actions/CreateLogRecordOfObject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public CreateLogRecordOfObject(IContext context, IMendixObject AuditableObject)
3636
this.AuditableObject = AuditableObject;
3737
}
3838

39-
@Override
39+
@java.lang.Override
4040
public IMendixObject executeAction() throws Exception
4141
{
4242
// BEGIN USER CODE
@@ -50,7 +50,7 @@ public IMendixObject executeAction() throws Exception
5050
/**
5151
* Returns a string representation of this action
5252
*/
53-
@Override
53+
@java.lang.Override
5454
public java.lang.String toString()
5555
{
5656
return "CreateLogRecordOfObject";

src/AuditTrailModule/javasource/audittrail/actions/GetDiff.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public GetDiff(IContext context, java.lang.String OldText, java.lang.String NewT
2727
this.NewText = NewText;
2828
}
2929

30-
@Override
30+
@java.lang.Override
3131
public java.lang.String executeAction() throws Exception
3232
{
3333
// BEGIN USER CODE
@@ -44,7 +44,7 @@ public java.lang.String executeAction() throws Exception
4444
/**
4545
* Returns a string representation of this action
4646
*/
47-
@Override
47+
@java.lang.Override
4848
public java.lang.String toString()
4949
{
5050
return "GetDiff";

0 commit comments

Comments
 (0)