You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-05 17:15:09 +00:00
Style: Fix statements ending with ';;'
This commit is contained in:
@@ -200,7 +200,7 @@ void Resource::set_path(const String& p_path, bool p_take_over) {
|
||||
if (path_cache!="") {
|
||||
|
||||
ResourceCache::lock->write_lock();
|
||||
ResourceCache::resources[path_cache]=this;;
|
||||
ResourceCache::resources[path_cache]=this;
|
||||
ResourceCache::lock->write_unlock();
|
||||
}
|
||||
|
||||
@@ -534,9 +534,9 @@ void ResourceCache::reload_externals() {
|
||||
|
||||
bool ResourceCache::has(const String& p_path) {
|
||||
|
||||
lock->read_lock();;
|
||||
lock->read_lock();
|
||||
bool b = resources.has(p_path);
|
||||
lock->read_unlock();;
|
||||
lock->read_unlock();
|
||||
|
||||
|
||||
return b;
|
||||
|
||||
Reference in New Issue
Block a user