in reply to Removing @poseidon tags from java code

[ You'll help us both by using <c>..</c> instead of <pre>..</pre> ]

For the one-liners,

perl -i.bk -pe's/^\@poseidon.*//s' AbstractEnum.java

or

perl -i.bk -ne'print if !/^\@poseidon/' AbstractEnum.java

Sorry, all I have time for right now.