Skip to content

Commit

Permalink
fix: public -> open
Browse files Browse the repository at this point in the history
  • Loading branch information
mrousavy committed Jan 12, 2025
1 parent 383cd64 commit fbdc44f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public protocol HybridObjectSpec: AnyObject {
/**
* The base class for all Swift-based HybridObjects.
*/
public class HybridObject: HybridObjectSpec {
open class HybridObject: HybridObjectSpec {
/**
* Get the memory size of any external heap allocations in bytes.
*
Expand All @@ -31,7 +31,7 @@ public class HybridObject: HybridObjectSpec {
* }
* ```
*/
public var memorySize: Int { return 0 }
open var memorySize: Int { return 0 }
}

public extension HybridObjectSpec {
Expand Down

0 comments on commit fbdc44f

Please sign in to comment.