Changeset 340

Show
Ignore:
Timestamp:
10/20/07 19:34:50 (15 months ago)
Author:
tomoyo
Message:

不要な行を消し忘れとusingの並び替え。

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Apple Wireless Keyboard Helper/trunk/Misuzilla.Applications.AppleWirelessKeyboardHelper/Program.cs

    r339 r340  
    11using System; 
    2 using System.Windows.Forms; 
     2using System.IO; 
     3using System.Text; 
     4using System.Collections.Generic; 
    35using System.Diagnostics; 
    46using System.Runtime.InteropServices; 
    57using System.Reflection; 
     8using System.Windows.Forms; 
    69 
    710using IronPython; 
    811using Microsoft.Scripting; 
    9 using System.IO; 
    10 using System.Text; 
    1112using Microsoft.Scripting.Hosting; 
    12 using System.Collections.Generic; 
    1313 
    1414namespace Misuzilla.Applications.AppleWirelessKeyboardHelper 
     
    126126 
    127127            IScriptEnvironment scriptEnv = ScriptEnvironment.GetEnvironment(); 
    128             List<ICompiledCode> compiledCodes = new List<ICompiledCode>(); 
    129128            _module = scriptEnv.CreateModule("ScriptModule"); 
    130129