Blogs

Mark Miller

March 2009 - Posts

  • Prepping for the 9.1 release of CodeRush and Refactor! Pro

         

    We're all deep in the final stages of prepping for the 9.1 release of CodeRush and Refactor! Pro. That explains the relatively quiet front out here. The jump in version numbers synchronizes with the rest of the product releases here at Dev Express. The 9 corresponds to 2009, and the 1 signifies the first release of the year.

    I'm currently working on an plug-in that HTML devs should be excited about, and in it I noticed the following code:

          if (leftSideIsWhiteSpace && rightSideIsWhiteSpace)
            ea.Satisfied = true;  // On an empty line.
          if (!leftSideIsWhiteSpace)
            ea.Satisfied = true;  // Text to the left.

    You may have spotted the redundancy here. Fortunately, I have Refactor! Pro. So I can place the caret on the if statement, press the CodeRush/Refactor! key, and choose Combine Conditionals, which gives me this (sans redundancy):

          if (!leftSideIsWhiteSpace || rightSideIsWhiteSpace)
            ea.Satisfied = true; // On an empty line.
          // Text to the left. 

    Nice. :-) Now I can manually combine the comments into something more meaningful, like "// Text to the left or on an empty line" and I'm done.

    I will be back soon with previews of what's you can expect in 9.1, including some powerful sweet fun code creation and navigation features for HTML developers. And after 9.1 is out I'll return to the Science of Great UX blog series.

     

     

     

More from DevExpress
Live Chat
Have a pre-sales question?
Need assistance with your evaluation?
We are here to help.
Chat is one of the many ways you can contact members of the DevExpress Team. We are available Monday-Friday between 8:30am and 5:00pm Pacific Time.
If you need additional product information, require pre-sales assistance, or want help with your order, write to us at info@devexpress.com or call us at
+1 (818) 844-3383.