Skip to content

Commit 5097f55

Browse files
committed
Removing jetbrains reference
1 parent a141637 commit 5097f55

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

Runtime/Locks/GameLock.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System;
22
using System.ComponentModel;
3-
using System.Runtime.CompilerServices;
43
using Gameframe.ScriptableObjects.Events;
5-
using JetBrains.Annotations;
64
using UnityEngine;
75

86
namespace Gameframe.ScriptableObjects.Locks
@@ -79,7 +77,6 @@ private void RaiseValueChanged()
7977

8078
public event PropertyChangedEventHandler PropertyChanged;
8179

82-
[NotifyPropertyChangedInvocator]
8380
private void OnPropertyChanged(string propertyName = null)
8481
{
8582
var value = Locked;

Runtime/Variables/BaseVariable.cs

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using System.ComponentModel;
33
using System.Runtime.CompilerServices;
44
using Gameframe.ScriptableObjects.Events;
5-
using JetBrains.Annotations;
65
using UnityEngine;
76

87
namespace Gameframe.ScriptableObjects.Variables
@@ -31,7 +30,6 @@ public GameEvent OnValueChanged
3130

3231
public event PropertyChangedEventHandler PropertyChanged;
3332

34-
[NotifyPropertyChangedInvocator]
3533
protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
3634
{
3735
try

0 commit comments

Comments
 (0)