Fix lint issue with printing.

Change-Id: I97c33cf8c946176bad97ff02026e550b0cbb5715
diff --git a/src/com/android/mail/print/PrintUtils.java b/src/com/android/mail/print/PrintUtils.java
index 082bc57..530e73e 100644
--- a/src/com/android/mail/print/PrintUtils.java
+++ b/src/com/android/mail/print/PrintUtils.java
@@ -17,6 +17,7 @@
 
 package com.android.mail.print;
 
+import android.annotation.SuppressLint;
 import android.content.Context;
 import android.content.res.Resources;
 import android.print.PrintAttributes;
@@ -75,6 +76,7 @@
      *
      * Sets up a webview to perform the printing work.
      */
+    @SuppressLint("NewApi")
     private static void printHtml(Context context, String html,
             String baseUri, String subject, boolean useJavascript) {
         final WebView webView = new WebView(context);