summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_port.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/k_port.h')
-rw-r--r--src/core/hle/kernel/k_port.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/core/hle/kernel/k_port.h b/src/core/hle/kernel/k_port.h
index 68c8ed8df..f1b2838d8 100644
--- a/src/core/hle/kernel/k_port.h
+++ b/src/core/hle/kernel/k_port.h
@@ -51,22 +51,6 @@ public:
return server;
}
- // DEPRECATED
-
- friend class ServerPort;
- std::string GetTypeName() const override {
- return "Port";
- }
- std::string GetName() const override {
- return name;
- }
-
- HandleType GetHandleType() const override {
- return {};
- }
-
- void Finalize() override {}
-
private:
enum class State : u8 {
Invalid = 0,
@@ -80,8 +64,6 @@ private:
KClientPort client;
State state{State::Invalid};
bool is_light{};
-
- std::string name; ///< Name of client port (optional)
};
} // namespace Kernel