Changeset 87


Ignore:
Timestamp:
Feb 6, 2007, 9:19:27 PM (17 years ago)
Author:
OverTaker
Message:

文法ミス修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Diagnostics/base.ab

    r79 r87  
    2525    ' アサート(コールスタックを表示)
    2626    Sub Assert( condition As Boolean )
    27         If condition == False then
     27        If condition = False then
    2828            'TODO: コールスタックを表示
    2929        End If
     
    3232    ' アサート(メッセージ文字列を表示)
    3333    Sub Assert( condition As Boolean, message As String )
    34         If condition == False then
     34        If condition = False then
    3535            ' TODO: メッセージボックス形式での表示に対応
    3636            WriteLine( message )
Note: See TracChangeset for help on using the changeset viewer.