Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Make rbx_reflection reference cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Sep 26, 2019
1 parent 8889f52 commit 3818195
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/remodel_api/instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use std::{
};

use rbx_dom_weak::{RbxId, RbxInstanceProperties, RbxTree};
use rbx_reflection::get_class_descriptor;
use rlua::{Context, FromLua, MetaMethod, ToLua, UserData, UserDataMethods};

#[derive(Clone)]
Expand Down Expand Up @@ -124,7 +125,7 @@ impl LuaInstance {
));
}

match rbx_reflection::get_class_descriptor(service_name) {
match get_class_descriptor(service_name) {
// We should only find services, even if there's a child of
// DataModel with a matching ClassName.
Some(descriptor) if descriptor.is_service() => {
Expand Down

0 comments on commit 3818195

Please sign in to comment.