Index: trunk/scripts/since_xxx.py
===================================================================
--- trunk/scripts/since_xxx.py	(revision 12855)
+++ trunk/scripts/since_xxx.py	(revision 12928)
@@ -6,5 +6,5 @@
 
 Will retrieve the current revision number from the server. It runs over all
-modified and added .java files and replaces xxx in "@since xxx" by the revision
+modified and added .java files and replaces xxx in "since xxx" by the revision
 number that is to be expected for the next commit.
 """
@@ -26,7 +26,7 @@
         with open(path, 'r') as f:
             filedata = f.read()
-        filedata2 = re.sub("@since xxx", lambda _: "@since {}".format(get_revision()), filedata)
+        filedata2 = re.sub("since xxx", lambda _: "since {}".format(get_revision()), filedata)
         if filedata != filedata2:
-            print("replacing '@since xxx' with '@since {}' in '{}'".format(get_revision(), path))
+            print("replacing 'since xxx' with 'since {}' in '{}'".format(get_revision(), path))
             with open(path, 'w') as f:
                 f.write(filedata2)
