Fix generation of license header for java

Summary:
If you run ```enums.py``` it will revert the changes from 835b2bb . This changes the license header for java to  not be a javadocs comment.
Closes https://github.com/facebook/yoga/pull/660

Differential Revision: D6407985

Pulled By: emilsjolander

fbshipit-source-id: 49efe555fecb8d740675c6b4631dce2a64f10417
This commit is contained in:
Lukas Wöhrl
2017-11-24 06:41:30 -08:00
committed by Facebook Github Bot
parent d8341ca3b0
commit 0b13a0c168

View File

@@ -181,7 +181,7 @@ with open(root + '/yoga/YGEnums.cpp', 'w') as f:
# write out java files # write out java files
for name, values in sorted(ENUMS.items()): for name, values in sorted(ENUMS.items()):
with open(root + '/java/com/facebook/yoga/Yoga%s.java' % name, 'w') as f: with open(root + '/java/com/facebook/yoga/Yoga%s.java' % name, 'w') as f:
f.write(LICENSE) f.write(LICENSE.replace('/**', '/*', 1))
f.write('package com.facebook.yoga;\n\n') f.write('package com.facebook.yoga;\n\n')
f.write('import com.facebook.proguard.annotations.DoNotStrip;\n\n') f.write('import com.facebook.proguard.annotations.DoNotStrip;\n\n')
f.write('@DoNotStrip\n') f.write('@DoNotStrip\n')