Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
agargiulo committed Jul 17, 2013
1 parent 871a548 commit e10cb0a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .classpath
Expand Up @@ -2,5 +2,6 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
7 changes: 3 additions & 4 deletions .settings/org.eclipse.jdt.core.prefs
@@ -1,9 +1,8 @@
#Wed May 18 18:59:58 EDT 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
Expand All @@ -22,4 +21,4 @@ org.eclipse.jdt.core.compiler.problem.missingJavadocTagDescription=return_tag
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=error
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=private
org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.compiler.source=1.7
1 change: 1 addition & 0 deletions src/Problem022.java
Expand Up @@ -67,6 +67,7 @@ public static void main(String[] args)
nameList.add(name);
}
}
in.close();
Collections.sort(nameList);
long sum = 0;
for (int i = 0; i < nameList.size(); i++)
Expand Down
1 change: 1 addition & 0 deletions src/Problem099.java
Expand Up @@ -86,6 +86,7 @@ public static void main(String[] args)

Calendar cal2 = Calendar.getInstance();
System.out.println("Ended at: " + dateFormat.format(cal2.getTime()));
in.close();

}
}

0 comments on commit e10cb0a

Please sign in to comment.