diff --git a/Source/OpenTK/GameWindow.cs b/Source/OpenTK/GameWindow.cs
index f585565c..1f1dd59e 100644
--- a/Source/OpenTK/GameWindow.cs
+++ b/Source/OpenTK/GameWindow.cs
@@ -533,7 +533,6 @@ namespace OpenTK
///
/// Gets a readonly IList containing all available OpenTK.Input.JoystickDevices.
///
- [Obsolete]
public IList Joysticks
{
get { return InputDriver.Joysticks; }
@@ -546,7 +545,6 @@ namespace OpenTK
///
/// Gets the primary Keyboard device, or null if no Keyboard exists.
///
- [Obsolete]
public KeyboardDevice Keyboard
{
get { return InputDriver.Keyboard.Count > 0 ? InputDriver.Keyboard[0] : null; }
@@ -559,7 +557,6 @@ namespace OpenTK
///
/// Gets the primary Mouse device, or null if no Mouse exists.
///
- [Obsolete]
public MouseDevice Mouse
{
get { return InputDriver.Mouse.Count > 0 ? InputDriver.Mouse[0] : null; }