| 700 | } |
| 701 | |
| 702 | bool ScriptingObjects::ScriptFile::writeString(String text) |
| 703 | { |
| 704 | #if JUCE_LINUX |
| 705 | return f.replaceWithText(text, false, false, "\n"); |
| 706 | #else |
| 707 | return f.replaceWithText(text); |
| 708 | #endif |
| 709 | } |
| 710 | |
| 711 | bool ScriptingObjects::ScriptFile::writeEncryptedObject(var jsonData, String key) |
| 712 | { |
no test coverage detected