Remove some unsued lines

This commit is contained in:
Wojtek Figat
2021-06-06 12:30:01 +02:00
parent 7c9e170a40
commit 4cd31ce2b4
2 changed files with 2 additions and 6 deletions

View File

@@ -334,7 +334,7 @@ namespace FlaxEditor
}
// Load scene
// scene cmd line argument
var scene = ContentDatabase.Find(_startupSceneCmdLine);
if (scene is SceneItem)
@@ -1334,7 +1334,7 @@ namespace FlaxEditor
{
Instance.StateMachine.StateChanged += RequestStartPlayOnEditMode;
}
[MethodImpl(MethodImplOptions.InternalCall)]
internal static extern int Internal_ReadOutputLogs(string[] outMessages, byte[] outLogTypes, long[] outLogTimes);

View File

@@ -45,7 +45,6 @@ public:
/// <summary>
/// Gets priority level of the thread.
/// </summary>
/// <returns>The thread priority level.</returns>
FORCE_INLINE ThreadPriority GetPriority() const
{
return _priority;
@@ -60,7 +59,6 @@ public:
/// <summary>
/// Gets thread ID
/// </summary>
/// <returns>Thread ID</returns>
FORCE_INLINE uint64 GetID() const
{
return _id;
@@ -69,7 +67,6 @@ public:
/// <summary>
/// Gets thread running state.
/// </summary>
/// <returns>True if thread is running, otherwise false</returns>
FORCE_INLINE bool IsRunning() const
{
return _isRunning;
@@ -78,7 +75,6 @@ public:
/// <summary>
/// Gets name of the thread.
/// </summary>
/// <returns>The thread name.</returns>
FORCE_INLINE const String& GetName() const
{
return _name;