mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Breaking all the code, breaking all the code..!
* Made a bunch more members static, removed some dead code, general cleaning.
This commit is contained in:
@@ -123,7 +123,7 @@ namespace OpenSim.Framework
|
||||
/// <param name="a">A</param>
|
||||
/// <param name="b">B</param>
|
||||
/// <returns>C</returns>
|
||||
private byte[] AppendArrays(byte[] a, byte[] b)
|
||||
private static byte[] AppendArrays(byte[] a, byte[] b)
|
||||
{
|
||||
byte[] c = new byte[a.Length + b.Length];
|
||||
Buffer.BlockCopy(a, 0, c, 0, a.Length);
|
||||
|
||||
Reference in New Issue
Block a user