ThreeTen / threetenbp

Backport of functionality based on JSR-310 to Java SE 6 and 7. This is NOT an implementation of JSR-310.
http://www.threeten.org/threetenbp/
BSD 3-Clause "New" or "Revised" License
552 stars 139 forks source link

Fix repeating words #153

Closed tynn closed 2 years ago

tynn commented 2 years ago

I saw a useless word repetion and fixed all by running

egrep -lR '(\<\w+\>) \<\1\>' src | xargs sed -i '' -e 's: \([a-zA-Z][^ ]*[a-zA-Z]\) \1 : \1 :'
jodastephen commented 2 years ago

thanks