MNG-3954: Remove the RuntimeInfo required in the setting.mdo

This commit is contained in:
Jason van Zyl 2014-06-13 12:07:11 -04:00
parent 661b4cf8f3
commit e112cd89c7
2 changed files with 0 additions and 27 deletions

View File

@ -123,11 +123,4 @@ class SettingsAdapter
{
return request.getPluginGroups();
}
@Override
public RuntimeInfo getRuntimeInfo()
{
return runtimeInfo;
}
}

View File

@ -383,26 +383,6 @@
return profileMap;
}
//[MNG-3954] :: this is required for the release plugin
private RuntimeInfo runtimeInfo;
@Deprecated
public void setRuntimeInfo( RuntimeInfo runtimeInfo )
{
this.runtimeInfo = runtimeInfo;
}
@Deprecated
public RuntimeInfo getRuntimeInfo()
{
if ( runtimeInfo == null )
{
runtimeInfo = new RuntimeInfo();
}
return runtimeInfo;
}
]]>
</code>
</codeSegment>