Skip to content

Commit

Permalink
Updated project to work properly with maven 3 and removed unicode cha…
Browse files Browse the repository at this point in the history
…racter from Paperboy.java
  • Loading branch information
augusto committed Mar 11, 2012
1 parent 555c2e5 commit e8cbfcb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
*.iml
.idea
/target
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -46,6 +46,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
Expand Down
Expand Up @@ -3,7 +3,7 @@
public class Paperboy {

public void billCustomer(Customer customer) {
float payment = 2; // I want my two dollars!
float payment = 2; // "I want my two dollars!"
boolean paymentTaken = customer.getPayment(payment);
if (paymentTaken) {
// say thank you and give customer a receipt
Expand Down

0 comments on commit e8cbfcb

Please sign in to comment.