mirror of
https://github.com/moparisthebest/JdbcMapper
synced 2024-11-14 13:15:07 -05:00
5 lines
245 B
Bash
Executable File
5 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
find */src/{main,test}/java -type f -name '*.java' -print0 | xargs -0 sed -i \
|
|
-e 's@/\*IFJAVA8_START@//IFJAVA8_START@' -e 's@IFJAVA8_END\*/@//IFJAVA8_END@' \
|
|
-e 's@//IFJAVA6_START@/*IFJAVA6_START@' -e 's@//IFJAVA6_END@IFJAVA6_END*/@'
|