# HG changeset patch # User Jacob Carlborg # Date 1219160411 -7200 # Node ID 354c569b57a9b3028c3d7da608401351a3c4540e # Parent 8b48be5454ceda809cf8c8b5b9242bd4f8e9fc72 Changed some "== null" to "is null" diff -r 8b48be5454ce -r 354c569b57a9 dwt/DWT.d --- a/dwt/DWT.d Tue Aug 19 17:35:17 2008 +0200 +++ b/dwt/DWT.d Tue Aug 19 17:40:11 2008 +0200 @@ -3788,7 +3788,7 @@ } String message = findErrorText (code); - if (detail != null) message += detail; + if (detail !is null) message += detail; switch (code) { /* Illegal Arguments (non-fatal) */ diff -r 8b48be5454ce -r 354c569b57a9 dwt/DWTError.d --- a/dwt/DWTError.d Tue Aug 19 17:35:17 2008 +0200 +++ b/dwt/DWTError.d Tue Aug 19 17:40:11 2008 +0200 @@ -7,6 +7,7 @@ * * Contributors: * IBM Corporation - initial API and implementation + * * Port to the D programming language: * Frank Benoit * Jacob Carlborg @@ -64,7 +65,7 @@ return this.next; } - //static final long serialVersionUID = 3833467327105808433L; + static const long serialVersionUID = 3833467327105808433L; /** * Constructs a new instance of this class with its diff -r 8b48be5454ce -r 354c569b57a9 dwt/DWTException.d --- a/dwt/DWTException.d Tue Aug 19 17:35:17 2008 +0200 +++ b/dwt/DWTException.d Tue Aug 19 17:40:11 2008 +0200 @@ -7,6 +7,7 @@ * * Contributors: * IBM Corporation - initial API and implementation + * * Port to the D programming language: * Frank Benoit * Jacob Carlborg @@ -56,7 +57,7 @@ } - //static final long serialVersionUID = 3257282552304842547L; + static const long serialVersionUID = 3257282552304842547L; /** * Constructs a new instance of this class with its