Eclipse, GitHub - Text Format / Tab Indent Problem
问题 i'm using an Eclipse based editor (Flash Builder) to write my code. i want to use GitHub as a remote repository but there are formatting conflicts caused by the tab indents. for example, in Flash Builder, i have written this: case Boolean: bytes.writeBoolean(value); break; case int: bytes.writeInt(value); break; case uint: bytes.writeUnsignedInt(value); break; case Number: bytes.writeDouble(value); break; case ByteArray: bytes.writeBytes(value); break; default: bytes.writeUTFBytes(value); but