mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Formatting: Remove double-dots from comments and other strings
This commit is contained in:
parent
82dc6d1c7e
commit
83e5264c86
209 changed files with 508 additions and 509 deletions
|
|
@ -153,7 +153,7 @@ namespace SocketHelpers
|
|||
|
||||
if (isListener)
|
||||
{
|
||||
// need to do this to interrupt the accept() function..
|
||||
// need to do this to interrupt the accept() function
|
||||
StreamingSocket temp;
|
||||
temp.connect (IPAddress::local().toString(), portNumber, 1000);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -507,7 +507,7 @@ void URL::createHeadersAndPostData (String& headers,
|
|||
|
||||
if (filesToUpload.size() > 0)
|
||||
{
|
||||
// (this doesn't currently support mixing custom post-data with uploads..)
|
||||
// this doesn't currently support mixing custom post-data with uploads
|
||||
jassert (postData.isEmpty());
|
||||
|
||||
auto boundary = String::toHexString (Random::getSystemRandom().nextInt64());
|
||||
|
|
@ -550,7 +550,7 @@ void URL::createHeadersAndPostData (String& headers,
|
|||
|
||||
data << postData;
|
||||
|
||||
// if the user-supplied headers didn't contain a content-type, add one now..
|
||||
// if the user-supplied headers didn't contain a content-type, add one now
|
||||
if (! headers.containsIgnoreCase ("Content-Type"))
|
||||
headers << "Content-Type: application/x-www-form-urlencoded\r\n";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue