Skip to content

Commit

Permalink
line size
Browse files Browse the repository at this point in the history
  • Loading branch information
Ennowulff committed May 8, 2023
1 parent 81b78b4 commit 6e158d2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/zaxage_demo_01.prog.abap
Expand Up @@ -72,9 +72,15 @@ CLASS main IMPLEMENTATION.

engine = NEW #( ).

DATA(entrance) = NEW room( name = 'Entrance' descr = 'You are in the entrance area. Welcome.' ).
DATA(developer) = NEW room( name = 'Developers office' descr = 'The developers area. be quiet!' ).
DATA(consulting) = NEW room( name = 'Consulting Department' descr = 'This is the area where the consultants work. Bring coffee!' ).
DATA(entrance) = NEW room(

Check failure on line 75 in src/zaxage_demo_01.prog.abap

View check run for this annotation

abaplint / abaplint

Remove whitespace at end of line

https://rules.abaplint.org/whitespace_end
name = 'Entrance'

Check failure on line 76 in src/zaxage_demo_01.prog.abap

View check run for this annotation

abaplint / abaplint

Remove whitespace at end of line

https://rules.abaplint.org/whitespace_end
descr = 'You are in the entrance area. Welcome.' ).
DATA(developer) = NEW room(

Check failure on line 78 in src/zaxage_demo_01.prog.abap

View check run for this annotation

abaplint / abaplint

Remove whitespace at end of line

https://rules.abaplint.org/whitespace_end
name = 'Developers office'

Check failure on line 79 in src/zaxage_demo_01.prog.abap

View check run for this annotation

abaplint / abaplint

Remove whitespace at end of line

https://rules.abaplint.org/whitespace_end
descr = 'The developers area. be quiet!' ).
DATA(consulting) = NEW room(

Check failure on line 81 in src/zaxage_demo_01.prog.abap

View check run for this annotation

abaplint / abaplint

Remove whitespace at end of line

https://rules.abaplint.org/whitespace_end
name = 'Consulting Department'

Check failure on line 82 in src/zaxage_demo_01.prog.abap

View check run for this annotation

abaplint / abaplint

Remove whitespace at end of line

https://rules.abaplint.org/whitespace_end
descr = 'This is the area where the consultants work. Bring coffee!' ).

engine->map->add_room( entrance ).
engine->map->add_room( developer ).
Expand Down

0 comments on commit 6e158d2

Please sign in to comment.