Skip to content

Commit

Permalink
Remove unused generics
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Aug 20, 2024
1 parent b1c8fa0 commit 9a4b4a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/mock/roblox/impl.luau
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type Impl<I> = typeof(setmetatable({} :: {
local CANNOT_SET_ERR_FORMAT = "[IMPL] cannot set property \"%s\" on class \"%s\" to a value that isn't of type \"%s?\""
local IMPLS = {} :: { [string]: Impl<any> }

local function rwprop<I, P, D>(
local function rwprop<I, P>(
impl: Impl<I>,
propname: string,
default_or_setter: P | PropertySetter<I, P>,
Expand Down Expand Up @@ -90,7 +90,7 @@ local function rwprop<I, P, D>(
return impl
end

local function rprop<I, P, D>(
local function rprop<I, P>(
impl: Impl<I>,
propname: string,
default: P
Expand Down

0 comments on commit 9a4b4a2

Please sign in to comment.