java-gobject-introspection r82 - trunk/src/org/gnome/gir/compiler



Author: walters
Date: Sat Oct 18 01:09:32 2008
New Revision: 82
URL: http://svn.gnome.org/viewvc/java-gobject-introspection?rev=82&view=rev

Log:
Reduce compiler verbosity a bit


Modified:
   trunk/src/org/gnome/gir/compiler/CodeFactory.java

Modified: trunk/src/org/gnome/gir/compiler/CodeFactory.java
==============================================================================
--- trunk/src/org/gnome/gir/compiler/CodeFactory.java	(original)
+++ trunk/src/org/gnome/gir/compiler/CodeFactory.java	Sat Oct 18 01:09:32 2008
@@ -2245,12 +2245,12 @@
 	}
 	
 	public static void verifyJarFiles(Set<File> jarPaths) throws Exception {
+		logger.info(String.format("Verifing %d jars", jarPaths.size()));			
 		List<URL> urls = new ArrayList<URL>();
 		Map<String, InputStream> allClassnames = new HashMap<String, InputStream>();		
 		List<ZipFile> zips = new ArrayList<ZipFile>();
 		for (File jarPath : jarPaths) {
-			urls.add(jarPath.toURI().toURL());
-			logger.info("Verifing " + jarPath);			
+			urls.add(jarPath.toURI().toURL());		
 			ZipFile zf = new ZipFile(jarPath);
 			for (Enumeration<? extends ZipEntry> e = zf.entries(); e.hasMoreElements();) {
 				ZipEntry entry = e.nextElement();



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]