oasp / oasp4j

The Open Application Standard Platform for Java
Apache License 2.0
60 stars 303 forks source link

Lines with @author tags removed (issue #455) #481

Closed SimonHuber closed 8 years ago

SimonHuber commented 8 years ago

All lines containing '@author' removed using the regex ' @author.\r\n'

oasp-ci commented 8 years ago

Can one of the admins verify this patch?

SimonHuber commented 8 years ago

In Eclipse you can prevent the author tag in new java files by applying the Code Templates. To do so go to Window->Preferences... eclipse_codetemplates

SimonHuber commented 8 years ago

If you have merge conflicts like this:

author

Using the following regex in eclipse helps to delete these lines and thus resolve merge conflicts:

<* HEAD.\r\n.\@author.\r\n.\r\n>.\r\n

sroeger commented 8 years ago

The next version of oasp-ide comes pre configured with this change to prevent the generation of the @author tags.

hohwille commented 8 years ago

:+1: Thanks